Skip to content

Commit

Permalink
[IDLE-000] 워크넷 공고페이지로 이동불가시 alert처리
Browse files Browse the repository at this point in the history
  • Loading branch information
J0onYEong committed Sep 7, 2024
1 parent 1671469 commit a8358d2
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,11 @@ public class WorknetPostDetailForWorkerVC: BaseViewController {
.subscribe(onNext: { [weak self] in
guard let self, let url = self.workNetPostLink else { return }

_ = openDeepLink(url: url)
let isSafaiOpended = openDeepLink(url: url)

if !isSafaiOpended {
self.showAlert(vo: .init(title: "공고 확인 실패", message: "처리과정에서 문제가 발생했습니다."))
}
})
.disposed(by: disposeBag)
}
Expand Down

0 comments on commit a8358d2

Please sign in to comment.