data endpoint for entity 90008 (aka. a website)

reduce share expiration to an hour

ptr.pet 459433f9 176754c5

verified
Waiting for spindle ...
+2 -2
+2 -2
eunomia/src/lib/navidrome.ts
··· 91 91 description: string = 'Generated by Eunomia' 92 92 ): Promise<string | null> => { 93 93 try { 94 - // Expiry: 1 day from now (in milliseconds) 95 - const expires = (Date.now() + 24 * 60 * 60 * 1000).toString(); 94 + // expiry in an hour 95 + const expires = (Date.now() + 60 * 60 * 1000).toString(); 96 96 97 97 const res = await request('createShare', { 98 98 id: songId,