Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralexzatsepin <az@mapswithme.com>2016-12-14 18:05:42 +0300
committeralexzatsepin <az@mapswithme.com>2016-12-14 18:35:47 +0300
commitea499b414c3fcb1b11f7f8c4c9321332b7e272fe (patch)
tree4a9c977bb7d2ad39b4a43968d9863cd21ceca9d4 /android
parent2497be5ebb922a9ec51561b7745a9a0c6fc3237c (diff)
[android][ios][traffic] Fixed 'etag' header processing
Diffstat (limited to 'android')
-rw-r--r--android/src/com/mapswithme/util/HttpClient.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/com/mapswithme/util/HttpClient.java b/android/src/com/mapswithme/util/HttpClient.java
index 8777e5a44b..c80ebdbabb 100644
--- a/android/src/com/mapswithme/util/HttpClient.java
+++ b/android/src/com/mapswithme/util/HttpClient.java
@@ -154,7 +154,7 @@ public final class HttpClient
if (header.getKey() == null || header.getValue() == null)
continue;
- p.headers.add(new HttpHeader(header.getKey(), TextUtils.join(", ", header.getValue())));
+ p.headers.add(new HttpHeader(header.getKey().toLowerCase(), TextUtils.join(", ", header.getValue())));
}
}
else