Skip to content

Commit

Permalink
Fix incorrect constant value
Browse files Browse the repository at this point in the history
Thanks to 0xced for pointing this out.
  • Loading branch information
defagos committed Jun 7, 2019
1 parent f5a5b5e commit e696692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Sources/SRGNetworkTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ typedef NS_OPTIONS(NSUInteger, SRGRequestOptions) {
* cases be dedicated to UI updates. If you want to have the completion block called on a background thread,
* simply enable the following option.
*/
SRGRequestOptionBackgroundCompletionEnabled = (1UL << 2),
SRGRequestOptionBackgroundCompletionEnabled = (1UL << 3),
};

/**
Expand Down

0 comments on commit e696692

Please sign in to comment.