Skip to content

Commit b9a784c

Browse files
committed
Update InAppMessages.paused to not be capitalized
* For Swift, no capitalizing the paused boolean: it will be OneSignal.InAppMessages.paused instead of capital Paused.
1 parent 3933350 commit b9a784c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

iOS_SDK/OneSignalSDK/Source/OneSignalInAppMessaging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@
100100
+ (void)removeTrigger:(NSString * _Nonnull)key;
101101
+ (void)removeTriggers:(NSArray<NSString *> * _Nonnull)keys;
102102
+ (void)clearTriggers;
103-
// Allows Swift users to: OneSignal.InAppMessages.Paused = true
103+
// Allows Swift users to: OneSignal.InAppMessages.paused = true
104104
+ (BOOL)paused NS_REFINED_FOR_SWIFT;
105105
+ (void)paused:(BOOL)pause NS_REFINED_FOR_SWIFT;
106106

iOS_SDK/OneSignalSDK/Source/OneSignalSwiftInterface.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public extension OSDebug {
6868
}
6969

7070
public extension OSInAppMessages {
71-
static var Paused: Bool {
71+
static var paused: Bool {
7272
get {
7373
return __paused()
7474
}

0 commit comments

Comments
 (0)