diff options
Diffstat (limited to 'protocols/Steam/src/api/history.h')
-rw-r--r-- | protocols/Steam/src/api/history.h | 3 |
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); } }; |