summaryrefslogtreecommitdiff
path: root/protocols/Steam/src/api
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2015-12-22 19:00:27 +0000
committerRobert Pösel <robyer@seznam.cz>2015-12-22 19:00:27 +0000
commitac8bed8f05473bf773b9729d5acef4b49dde3682 (patch)
treee4acef721054ef0fa89676061147e2bba9b6baf1 /protocols/Steam/src/api
parentf5e9122078e308f4b9dfa70b4f160056fae95c19 (diff)
Steam: Various fixes to loading offline messages
git-svn-id: http://svn.miranda-ng.org/main/trunk@15933 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/api')
-rw-r--r--protocols/Steam/src/api/history.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/Steam/src/api/history.h b/protocols/Steam/src/api/history.h
index fc3c7c8a6b..86e29a6da2 100644
--- a/protocols/Steam/src/api/history.h
+++ b/protocols/Steam/src/api/history.h
@@ -20,7 +20,8 @@ public:
AddParameter("access_token", token);
AddParameter("steamid1", steamId);
AddParameter("steamid2", who);
- AddParameter("rtime32_start_time=%d", since);
+ // Steam somehow doesn't respect too precise start time parameter, so we better request older time and then do own filtering again
+ AddParameter("rtime32_start_time=%d", since - 1500);
}
};