Skip to content

Commit

Permalink
fix: update path to favicons
Browse files Browse the repository at this point in the history
The files were moved under static/ but these paths weren't updated.
  • Loading branch information
vapier committed Aug 18, 2020
1 parent 37188c5 commit 763ccc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webui-page/webui.js
Original file line number Diff line number Diff line change
Expand Up @@ -507,8 +507,8 @@ function setupNotification() {
artist: window.metadata.artist,
album: window.metadata.album,
artwork: [
{ src: '/favicons/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' },
{ src: '/favicons/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' }
{ src: 'static/favicons/android-chrome-192x192.png', sizes: '192x192', type: 'image/png' },
{ src: 'static/favicons/android-chrome-512x512.png', sizes: '512x512', type: 'image/png' }
]
});

Expand Down

0 comments on commit 763ccc9

Please sign in to comment.