This commit is contained in:
Daniel Haller 2024-05-02 01:22:00 +02:00
parent 75a2ee89a9
commit 36969b929c
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ interface AccountCreateAttributes {
interface PlaylistAttributes {
id: number
status: 'waiting' | 'preparing' | 'downloading' | 'merging' | 'decrypting' | 'completed' | 'failed'
status: 'waiting' | 'preparing' | 'downloading' | 'merging' | 'decrypting' | 'completed' | 'failed'
media: CrunchyEpisode | ADNEpisode
dub: Array<string>
sub: Array<string>

View File

@ -185,7 +185,7 @@ export async function deleteVideoToken(content: string, token: string) {
if (!login) return
const headers = {
Authorization: `Bearer ${login.access_token}`,
Authorization: `Bearer ${login.access_token}`
}
try {