1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-05-08 02:34:06 +02:00

Tweak key format in analytics request

This commit is contained in:
chylex 2017-11-04 14:07:24 +01:00
parent 2867a875c9
commit 18f8d5b269

View File

@ -32,7 +32,7 @@ public NameValueCollection ToNameValueCollection(){
foreach(DictionaryEntry entry in data){
if (entry.Value != null){
collection.Add((string)entry.Key, (string)entry.Value);
collection.Add(((string)entry.Key).ToLower().Replace(' ', '_'), (string)entry.Value);
}
}