Style fixes

This commit is contained in:
Arkadiusz Fal
2024-02-02 10:42:24 +01:00
parent 55f4a4a2a1
commit 2413526d70
4 changed files with 5 additions and 4 deletions

View File

@@ -154,7 +154,8 @@ final class PipedAPI: Service, ObservableObject, VideosAPI {
method: .post,
parameters: ["username": username, "password": password],
encoding: JSONEncoding.default
).responseDecodable(of: JSON.self) { [weak self] response in
)
.responseDecodable(of: JSON.self) { [weak self] response in
guard let self else {
return
}