Skip to content

Commit 9f7a1f1

Browse files
committed
[Fix] #206 - fetch 시간 최소 간격 조정
1 parent 609583e commit 9f7a1f1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Runnect-iOS/Runnect-iOS/Global/Supports/AppDelegate.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ extension AppDelegate {
6767
let remoteConfig = RemoteConfig.remoteConfig()
6868
let settings = RemoteConfigSettings()
6969

70-
settings.minimumFetchInterval = 0
70+
/// 개발 중에는 0으로 설정
71+
settings.minimumFetchInterval = 86400 // 24hour
7172
remoteConfig.configSettings = settings
7273

7374
remoteConfig.fetch() { (status, error) -> Void in

0 commit comments

Comments
 (0)