Skip to content

Commit 047edd6

Browse files
author
queue-it
committed
Preparing release 3.3.1
1 parent 85aa198 commit 047edd6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

QueueITLib/QueueConsts.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
#define QueueCloseUrl @"queueit://close"
55
#define QueueRestartSessionUrl @"queueit://restartSession"
6-
#define SDKVersion @"iOS-3.3.0";
6+
#define SDKVersion @"iOS-3.3.1";
77

88
#endif

QueueITLib/QueueITEngine.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ - (void)waitingRoomProvider:(nonnull QueueITWaitingRoomProvider *)provider notif
151151
[self.queuePassedDelegate notifyYourTurn:queuePassedInfo];
152152
return;
153153
}
154-
else if([[queuePassResult redirectType] isEqual: @"disabled"])
154+
else if([[queuePassResult redirectType] isEqual: @"disabled"] || [[queuePassResult redirectType] isEqual: @"idle"] || [[queuePassResult redirectType] isEqual: @"afterevent"])
155155
{
156156
QueueDisabledInfo* queueDisabledInfo = [[QueueDisabledInfo alloc]initWithQueueitToken:queuePassResult.queueToken];
157157
[self.queueDisabledDelegate notifyQueueDisabled:queueDisabledInfo];

QueueITLibrary.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22
s.name = "QueueITLibrary"
3-
s.version = "3.3.0"
3+
s.version = "3.3.1"
44
s.summary = "Library for integrating Queue-it into an iOS app using web uI"
55
s.homepage = "https://github.com/queueit/ios-webui-sdk"
66
s.license = 'MIT'
77
s.authors = { 'Queue-It' => 'https://queue-it.com' }
88
s.platform = :ios, '9.3'
9-
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.3.0' }
9+
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.3.1' }
1010
s.requires_arc = true
1111
s.source_files = "QueueITLib/*.{h,m}"
1212
end

0 commit comments

Comments
 (0)