Skip to content

Commit 8bf3ba5

Browse files
committed
Merge branch '#284-푸시알림구현'
2 parents 8ce9ecc + 054edc4 commit 8bf3ba5

File tree

2 files changed

+13
-6
lines changed

2 files changed

+13
-6
lines changed

Terning-iOS/Terning-iOS.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2024,7 +2024,7 @@
20242024
CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements";
20252025
CODE_SIGN_IDENTITY = "Apple Development";
20262026
CODE_SIGN_STYLE = Automatic;
2027-
CURRENT_PROJECT_VERSION = 2025.0506.2225;
2027+
CURRENT_PROJECT_VERSION = 2025.0512.0027;
20282028
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
20292029
ENABLE_USER_SCRIPT_SANDBOXING = NO;
20302030
GENERATE_INFOPLIST_FILE = YES;
@@ -2041,7 +2041,7 @@
20412041
"$(inherited)",
20422042
"@executable_path/Frameworks",
20432043
);
2044-
MARKETING_VERSION = 1.2.0;
2044+
MARKETING_VERSION = 1.3.0;
20452045
OTHER_LDFLAGS = (
20462046
"-Xlinker",
20472047
"-interposable",
@@ -2068,7 +2068,7 @@
20682068
CODE_SIGN_ENTITLEMENTS = "Terning-iOS/Terning-iOS.entitlements";
20692069
CODE_SIGN_IDENTITY = "Apple Development";
20702070
CODE_SIGN_STYLE = Automatic;
2071-
CURRENT_PROJECT_VERSION = 2025.0506.2225;
2071+
CURRENT_PROJECT_VERSION = 2025.0512.0027;
20722072
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
20732073
ENABLE_USER_SCRIPT_SANDBOXING = NO;
20742074
GENERATE_INFOPLIST_FILE = YES;
@@ -2085,7 +2085,7 @@
20852085
"$(inherited)",
20862086
"@executable_path/Frameworks",
20872087
);
2088-
MARKETING_VERSION = 1.2.0;
2088+
MARKETING_VERSION = 1.3.0;
20892089
PRODUCT_BUNDLE_IDENTIFIER = "com.terning.Terning-iOS";
20902090
PRODUCT_NAME = "$(TARGET_NAME)";
20912091
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -2104,7 +2104,7 @@
21042104
buildSettings = {
21052105
CODE_SIGN_IDENTITY = "Apple Development";
21062106
CODE_SIGN_STYLE = Automatic;
2107-
CURRENT_PROJECT_VERSION = 2025.0506.2225;
2107+
CURRENT_PROJECT_VERSION = 2025.0512.0027;
21082108
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
21092109
ENABLE_USER_SCRIPT_SANDBOXING = YES;
21102110
GENERATE_INFOPLIST_FILE = YES;
@@ -2132,7 +2132,7 @@
21322132
buildSettings = {
21332133
CODE_SIGN_IDENTITY = "Apple Development";
21342134
CODE_SIGN_STYLE = Automatic;
2135-
CURRENT_PROJECT_VERSION = 2025.0506.2225;
2135+
CURRENT_PROJECT_VERSION = 2025.0512.0027;
21362136
DEVELOPMENT_TEAM = 8Q4H7X3Q58;
21372137
ENABLE_USER_SCRIPT_SANDBOXING = YES;
21382138
GENERATE_INFOPLIST_FILE = YES;

Terning-iOS/Terning-iOS/Data/Network/User/AuthInterceptor.swift

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,13 @@ final class AuthInterceptor: RequestInterceptor {
4343
return
4444
}
4545

46+
// ✅ 최대 3번까지만 재시도
47+
if request.retryCount >= 3 {
48+
print("❌ 최대 재시도 횟수 초과")
49+
completion(.doNotRetryWithError(error))
50+
return
51+
}
52+
4653
UserManager.shared.getNewToken { result in
4754
switch result {
4855
case .success:

0 commit comments

Comments
 (0)