From 2b73de8794b44ec803f8fbd52e1c1156fceb1910 Mon Sep 17 00:00:00 2001 From: jules Date: Thu, 27 Nov 2014 16:24:58 +0000 Subject: [PATCH] Modified URL::addEscapeChars to generate upper-case hex digits because apparently lower-case can cause problems. --- modules/juce_core/network/juce_URL.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_core/network/juce_URL.cpp b/modules/juce_core/network/juce_URL.cpp index 76d2b1e79f..10358023c8 100644 --- a/modules/juce_core/network/juce_URL.cpp +++ b/modules/juce_core/network/juce_URL.cpp @@ -482,8 +482,8 @@ String URL::addEscapeChars (const String& s, const bool isParameter) || legalChars.indexOf ((juce_wchar) c) >= 0)) { utf8.set (i, '%'); - utf8.insert (++i, "0123456789abcdef" [((uint8) c) >> 4]); - utf8.insert (++i, "0123456789abcdef" [c & 15]); + utf8.insert (++i, "0123456789ABCDEF" [((uint8) c) >> 4]); + utf8.insert (++i, "0123456789ABCDEF" [c & 15]); } }