Skip to content

Commit

Permalink
Preparing release 3.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
queue-it committed Aug 8, 2022
1 parent 85aa198 commit 047edd6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion QueueITLib/QueueConsts.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

#define QueueCloseUrl @"queueit://close"
#define QueueRestartSessionUrl @"queueit://restartSession"
#define SDKVersion @"iOS-3.3.0";
#define SDKVersion @"iOS-3.3.1";

#endif
2 changes: 1 addition & 1 deletion QueueITLib/QueueITEngine.m
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ - (void)waitingRoomProvider:(nonnull QueueITWaitingRoomProvider *)provider notif
[self.queuePassedDelegate notifyYourTurn:queuePassedInfo];
return;
}
else if([[queuePassResult redirectType] isEqual: @"disabled"])
else if([[queuePassResult redirectType] isEqual: @"disabled"] || [[queuePassResult redirectType] isEqual: @"idle"] || [[queuePassResult redirectType] isEqual: @"afterevent"])
{
QueueDisabledInfo* queueDisabledInfo = [[QueueDisabledInfo alloc]initWithQueueitToken:queuePassResult.queueToken];
[self.queueDisabledDelegate notifyQueueDisabled:queueDisabledInfo];
Expand Down
4 changes: 2 additions & 2 deletions QueueITLibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Pod::Spec.new do |s|
s.name = "QueueITLibrary"
s.version = "3.3.0"
s.version = "3.3.1"
s.summary = "Library for integrating Queue-it into an iOS app using web uI"
s.homepage = "https://github.com/queueit/ios-webui-sdk"
s.license = 'MIT'
s.authors = { 'Queue-It' => 'https://queue-it.com' }
s.platform = :ios, '9.3'
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.3.0' }
s.source = { :git => 'https://github.com/queueit/ios-webui-sdk.git', :tag => '3.3.1' }
s.requires_arc = true
s.source_files = "QueueITLib/*.{h,m}"
end

0 comments on commit 047edd6

Please sign in to comment.