Browse Source

Fixed a typo in iOS network code

tags/2021-05-28
jules 8 years ago
parent
commit
e122d2b9e4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/native/juce_mac_Network.mm

+ 1
- 1
modules/juce_core/native/juce_mac_Network.mm View File

@@ -526,7 +526,7 @@ struct BackgroundDownloadTask : public URL::DownloadTask
{
if (calledComplete.exchange (1) == 0)
{
httpCode = nsError != nil ? getHTTPErrorCode (nsError) ? -1;
httpCode = nsError != nil ? getHTTPErrorCode (nsError) : -1;
error = true;
finished = true;


Loading…
Cancel
Save