1
0
mirror of https://github.com/TwidereProject/Twidere-Android synced 2024-12-25 07:52:58 +01:00

turn off skip_aggregation

This commit is contained in:
Mariotaku Lee 2016-01-10 10:23:13 +08:00
parent 0b268757a6
commit 35f9c359f7

View File

@ -534,7 +534,7 @@ public class TwitterAPIFactory implements TwidereConstants {
map.put("include_descendent_reply_count", "true"); map.put("include_descendent_reply_count", "true");
map.put("full_text", "true"); map.put("full_text", "true");
map.put("model_version", "7"); map.put("model_version", "7");
map.put("skip_aggregation", "true"); map.put("skip_aggregation", "false");
} finally { } finally {
sDefaultRequestParams = Collections.unmodifiableMap(map); sDefaultRequestParams = Collections.unmodifiableMap(map);
} }