Skip to content

Commit 08e0da6

Browse files
committed
[Fix] #221 - AuthInterceptor retry 코드 수정
1 parent 8c7e221 commit 08e0da6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Terning-iOS/Terning-iOS/Source/Data/Network/Service/AuthInterceptor.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ final class AuthInterceptor: RequestInterceptor {
3636
guard let response = request.task?.response as? HTTPURLResponse,
3737
response.statusCode == 401,
3838
let pathComponents = request.request?.url?.pathComponents,
39-
!pathComponents.contains("getNewToken")
39+
!pathComponents.contains("token-reissue")
4040
else {
4141
dump(error)
4242
completion(.doNotRetryWithError(error))

0 commit comments

Comments
 (0)