Skip to content

Commit

Permalink
fix: ci fail to analyse, add explicit self
Browse files Browse the repository at this point in the history
  • Loading branch information
tisfeng committed Dec 17, 2023
1 parent db909ef commit 2b29539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Easydict/Feature/Service/Caiyun/CaiyunService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public final class CaiyunService: QueryService {
.validate()
.responseDecodable(of: CaiyunResponse.self) { [weak self] response in
guard let self else { return }
let result = result
let result = self.result

switch response.result {
case let .success(value):
Expand Down
2 changes: 1 addition & 1 deletion Easydict/Feature/Service/Tencent/TencentService.swift
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public final class TencentService: QueryService {
.validate()
.responseDecodable(of: TencentResponse.self) { [weak self] response in
guard let self else { return }
let result = result
let result = self.result

switch response.result {
case let .success(value):
Expand Down

0 comments on commit 2b29539

Please sign in to comment.