diff options
author | Andreas Hubel | 2018-06-06 00:21:56 +0200 |
---|---|---|
committer | Andreas Hubel | 2018-06-06 00:22:39 +0200 |
commit | 182b9d5ca6335e6f311553b2ebaf7a067d147d83 (patch) | |
tree | af1144345762838fe722403b51444b6740b78542 /model | |
parent | 56b4d60573a89a74abfb8fb306b7716fe7b87f74 (diff) |
show latest tweets instead of top tweets
Diffstat (limited to '')
-rw-r--r-- | model/Room.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/model/Room.php b/model/Room.php index 3552f60..21a05a9 100644 --- a/model/Room.php +++ b/model/Room.php @@ -113,7 +113,7 @@ class Room public function getTwitterUrl() { return sprintf( - 'https://twitter.com/search?q=%s', + 'https://twitter.com/search?f=tweets&q=%s', rawurlencode($this->getTwitterText()) ); } |