Skip to content

Commit

Permalink
[Fix] #197 - 네트워크 로직 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongdung-eo committed Nov 26, 2023
1 parent 743a6be commit fe0b6ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iOS-NOTTODO/iOS-NOTTODO/Network/API/Home/HomeAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ final class HomeAPI {
case .success(let response):
do {
self.missionDetailDailyData = try response.map(GeneralResponse<MissionDetailResponseDTO>?.self)
guard let missionDetailDailyData = self.missionDetailDailyData else { return }
guard let missionDetailDailyData = self.missionDetailDailyData else { return completion(nil) }
completion(missionDetailDailyData)
} catch let err {
print(err.localizedDescription, 500)
Expand Down

0 comments on commit fe0b6ff

Please sign in to comment.