Decreases Sign up alert time.

This commit is contained in:
Krunoslav Zaher 2016-01-01 20:49:57 +01:00
parent 6dd9ff1e1e
commit 35be3f644b
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class GitHubDefaultAPI : GitHubAPI {
let signupResult = arc4random() % 5 == 0 ? false : true
return Observable.just(signupResult)
.concat(Observable.never())
.throttle(2, scheduler: MainScheduler.instance)
.throttle(0.4, scheduler: MainScheduler.instance)
.take(1)
}
}