mirror of
https://github.com/Jellify-Music/App.git
synced 2026-02-13 14:08:31 -06:00
11 lines
405 B
TypeScript
11 lines
405 B
TypeScript
import * as Keychain from "react-native-keychain"
|
|
|
|
export const fetchCredentials = (serverUrl: string) => {
|
|
return Keychain.getInternetCredentials(serverUrl)
|
|
.then((keychain) => {
|
|
if (!keychain)
|
|
throw new Error("Jellyfin server credentials not stored in keychain");
|
|
|
|
return keychain as Keychain.SharedWebCredentials
|
|
});
|
|
} |