Merge pull request #289 from akshetpandey/master

Fix incorrect status message when remote config fetch is successful
This commit is contained in:
Michael Diarmid 2017-07-30 02:00:58 +01:00 committed by GitHub
commit 0570095c16
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ NSString *convertFIRRemoteConfigFetchStatusToNSString(FIRRemoteConfigFetchStatus
switch(value){
case FIRRemoteConfigFetchStatusNoFetchYet:
return @"config/no_fetch_yet";
case FIRRemoteConfigFetchStatusFailure:
return @"config/failure";
case FIRRemoteConfigFetchStatusSuccess:
return @"config/success";
case FIRRemoteConfigFetchStatusThrottled:
return @"config/throttled";
default: