@muhammedaksam/easiarr 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/api/jellyfin-api.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muhammedaksam/easiarr",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.3",
|
|
4
4
|
"description": "TUI tool for generating docker-compose files for the *arr media ecosystem with 41 apps, TRaSH Guides best practices, VPN routing, and Traefik reverse proxy support",
|
|
5
5
|
"module": "src/index.ts",
|
|
6
6
|
"type": "module",
|
package/src/api/jellyfin-api.ts
CHANGED
|
@@ -17,7 +17,7 @@ export interface StartupConfiguration {
|
|
|
17
17
|
|
|
18
18
|
export interface StartupUser {
|
|
19
19
|
Name: string
|
|
20
|
-
|
|
20
|
+
Password: string
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
export interface StartupRemoteAccess {
|
|
@@ -169,7 +169,7 @@ export class JellyfinClient {
|
|
|
169
169
|
await this.getFirstUser()
|
|
170
170
|
|
|
171
171
|
// Then update with our credentials
|
|
172
|
-
const user: StartupUser = { Name: name,
|
|
172
|
+
const user: StartupUser = { Name: name, Password: password }
|
|
173
173
|
await this.request("/Startup/User", {
|
|
174
174
|
method: "POST",
|
|
175
175
|
body: JSON.stringify(user),
|