mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-06-07 20:34:08 +02:00
Tweak key format in analytics request
This commit is contained in:
parent
2867a875c9
commit
18f8d5b269
@ -32,7 +32,7 @@ public NameValueCollection ToNameValueCollection(){
|
|||||||
|
|
||||||
foreach(DictionaryEntry entry in data){
|
foreach(DictionaryEntry entry in data){
|
||||||
if (entry.Value != null){
|
if (entry.Value != null){
|
||||||
collection.Add((string)entry.Key, (string)entry.Value);
|
collection.Add(((string)entry.Key).ToLower().Replace(' ', '_'), (string)entry.Value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user