diff --git a/plugins/_lib/native/downloadTrack.native.ts b/plugins/_lib/native/downloadTrack.native.ts index 8853f46..dfb0020 100644 --- a/plugins/_lib/native/downloadTrack.native.ts +++ b/plugins/_lib/native/downloadTrack.native.ts @@ -42,8 +42,8 @@ const addTags = async (extPlaybackInfo: ExtendedPlayackInfo, stream: Readable, m const exists = (path: string): Promise => stat(path) - .catch(() => false) - .then(() => true); + .then(() => true) + .catch(() => false); export type PathInfo = { fileName?: string;