Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make check login throw for better error handling #4

Merged
merged 1 commit into from
Feb 9, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions Sources/UmeroKit/UmeroKit.swift
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,10 @@ extension UmeroKit {
let response = try await request.response()
}

public func checkLogin(username: String, password: String) async -> Bool {
do {
public func checkLogin(username: String, password: String) async throws -> Bool {
let authRequest = UAuthDataRequest(username: username, password: password, apiKey: Self.apiKey, secret: Self.secret)
let authResponse = try await authRequest.response()
return true
} catch {
return false
}
}
}

Expand Down