Skip to content

Commit

Permalink
Version 3.22.1
Browse files Browse the repository at this point in the history
  • Loading branch information
webim committed Sep 26, 2018
1 parent b4e3fcd commit dd3bf56
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PODS:
- SQLite.swift (0.11.5):
- SQLite.swift/standard (= 0.11.5)
- SQLite.swift/standard (0.11.5)
- WebimClientLibrary (3.22.0):
- WebimClientLibrary (3.22.1):
- SQLite.swift

DEPENDENCIES:
Expand Down
4 changes: 2 additions & 2 deletions Example/Pods/Local Podspecs/WebimClientLibrary.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.22.0</string>
<string>3.22.1</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ This library provides [_Webim SDK_ for _iOS_](https://webim.ru/integration/mobil

Add following line for your target in your **Podfile**:
```
pod 'WebimClientLibrary', :git => 'https://github.com/webim/webim-client-sdk-ios.git', :branch => 'master', :tag => '3.22.0'
pod 'WebimClientLibrary', :git => 'https://github.com/webim/webim-client-sdk-ios.git', :branch => 'master', :tag => '3.22.1'
```
`use_frameworks!` must be specified.

### Carthage

Add following line to your **Cartfile**:
```
github "webim/webim-client-sdk-ios" ~> 3.22.0
github "webim/webim-client-sdk-ios" ~> 3.22.1
```

### Additional notes
Expand All @@ -38,7 +38,7 @@ Trying to integrate _WebimClientLibrary_ into your _Objective-C_ code? Try out o
Previous _Objective-C_ version (version numbers 2.x.x) can be reached from **version2** branch.

## Release notes
* New method `setPrechatFields()`.
* Session initialization fixed.

## Example

Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = 'WebimClientLibrary'
s.version = '3.22.0'
s.version = '3.22.1'

s.author = { 'Webim.ru Ltd.' => '[email protected]' }
s.homepage = 'https://webim.ru/integration/mobile-sdk/ios-sdk-howto/'
Expand Down
2 changes: 1 addition & 1 deletion WebimClientLibrary/Backend/DeltaRequestLoop.swift
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class DeltaRequestLoop: AbstractRequestLoop {

func run() {
while isRunning() {
if authorizationData != nil {
if authorizationData != nil && since != 0 {
requestDelta()
} else {
requestInitialization()
Expand Down

0 comments on commit dd3bf56

Please sign in to comment.