This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Fix identifying the scheme portion of a URL
tags/2021-05-28
hogliux
9 years ago
parent
72083c1bcf
commit
042bd2be13
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
modules/juce_core/network/juce_URL.cpp
+ 1
- 1
modules/juce_core/network/juce_URL.cpp
View File
@@ -136,7 +136,7 @@ namespace URLHelpers
|| url[i] == '+' || url[i] == '-' || url[i] == '.')
++i;
return url
[i] == ':'
? i + 1 : 0;
return url
.substring (i) == "://"
? i + 1 : 0;
}
static int findStartOfNetLocation (const String& url)
Write
Preview
Loading…
Cancel
Save