We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c4f012 commit d80b6a7Copy full SHA for d80b6a7
src/github/songChanges.ts
@@ -8,7 +8,7 @@ export default async function (): Promise<boolean> {
8
if (typeof lastUpdatedAt !== 'string' || !lastUpdatedAt.match(isoDateRegex)) return true;
9
10
const songs = createSongs(lastUpdatedAt);
11
- if (songs.json !== oldSongs.json) return true;
+ if ((await songs.json) !== oldSongs.json) return true;
12
if (songs.xml !== oldSongs.xml) return true;
13
if (songs.xmlNoIds !== oldSongs.xmlNoIds) return true;
14
0 commit comments