Skip to content

Commit d80b6a7

Browse files
committed
Fix songs.json not being awaited in Github build
1 parent 0c4f012 commit d80b6a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/github/songChanges.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export default async function (): Promise<boolean> {
88
if (typeof lastUpdatedAt !== 'string' || !lastUpdatedAt.match(isoDateRegex)) return true;
99

1010
const songs = createSongs(lastUpdatedAt);
11-
if (songs.json !== oldSongs.json) return true;
11+
if ((await songs.json) !== oldSongs.json) return true;
1212
if (songs.xml !== oldSongs.xml) return true;
1313
if (songs.xmlNoIds !== oldSongs.xmlNoIds) return true;
1414

0 commit comments

Comments
 (0)