diff options
| author | Jan T <jans.tuomi@gmail.com> | 2016-08-02 09:33:22 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-02 09:33:22 +0300 |
| commit | 0cb7fe6bee47abf6d6537c1236ab59069142eef9 (patch) | |
| tree | ce4ba2a482c292d12d9d5c754e91c255455b55bf | |
| parent | a4b4046c2bafa507f0c1a4704f8f8d3442a04689 (diff) | |
| parent | d474dedf05f25e9206ea5fa4816b490918ac15f2 (diff) | |
Merge pull request #2 from juusaw/patch-1
#1 Updated API call to filter TG messages
| -rw-r--r-- | project/shoutboxapicommunicator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/shoutboxapicommunicator.py b/project/shoutboxapicommunicator.py index 33253ac..dfabc46 100644 --- a/project/shoutboxapicommunicator.py +++ b/project/shoutboxapicommunicator.py @@ -16,7 +16,7 @@ class ShoutboxCommunicator(BaseCommunicator): @staticmethod def get_url(): - return "{}/api/last?seconds={}".format(ShoutboxCommunicator.url, ShoutboxCommunicator.interval) + return "{}/api/last?seconds={}&telegram=false".format(ShoutboxCommunicator.url, ShoutboxCommunicator.interval) @staticmethod def post_url(): |
