File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Branch-SDK/Branch-SDK/Networking/Requests Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,12 +107,12 @@ typedef NS_ENUM(NSInteger, BNCUpdateState) {
107107// BNCUpdateStateError = 3, // Error determining update state.
108108// BNCUpdateStateReinstall = 4, // App was re-installed.
109109
110- BNCUpdateStateUnknown = 0 , // App update status is unknown
110+ BNCUpdateStateIgnored = 0 , // Values 0-4 are ignored by the server
111111 BNCUpdateStateTuneMigration = 5 // App was migrated from Tune SDK to Branch SDK
112112};
113113
114114+ (NSNumber *)appUpdateState {
115- BNCUpdateState update_state = BNCUpdateStateUnknown ;
115+ BNCUpdateState update_state = BNCUpdateStateIgnored ;
116116 if ([BNCTuneUtility isTuneDataPresent ]) {
117117 update_state = BNCUpdateStateTuneMigration;
118118 }
You can’t perform that action at this time.
0 commit comments