Matt McDonald 7 жил өмнө
parent
commit
8880359877

+ 1 - 1
ios/RCTConvert+RNPStatus.h

@@ -33,7 +33,7 @@ typedef NS_ENUM(NSInteger, RNPType) {
     RNPTypeNotification,
     RNPTypeBackgroundRefresh,
     RNPTypeSpeechRecognition,
-    RNPTypeMediaLibrary
+    RNPTypeMediaLibrary,
     RNPTypeMotion
 };
 

+ 1 - 1
ios/RCTConvert+RNPStatus.m

@@ -21,7 +21,7 @@ RCT_ENUM_CONVERTER(RNPType, (@{ @"location" : @(RNPTypeLocation),
                                 @"notification" : @(RNPTypeNotification),
                                 @"backgroundRefresh": @(RNPTypeBackgroundRefresh),
                                 @"speechRecognition": @(RNPTypeSpeechRecognition),
-                                @"mediaLibrary": @(RNPTypeMediaLibrary)
+                                @"mediaLibrary": @(RNPTypeMediaLibrary),
                                 @"motion": @(RNPTypeMotion)
                                 }),
                                 RNPTypeUnknown, integerValue)