Fix cover art not showing in notification when using a BaseURL

This commit is contained in:
Deluan 2021-04-14 13:30:14 -04:00 committed by Joe Stump
parent 1b39377a46
commit 4d60b22be2
No known key found for this signature in database
GPG Key ID: 29151C3EC48A0EB9

View File

@ -22,7 +22,7 @@ import {
} from '../actions'
import config from '../config'
import PlayerToolbar from './PlayerToolbar'
import { sendNotification, baseUrl } from '../utils'
import { sendNotification } from '../utils'
import { keyMap } from '../hotkeys'
import useCurrentTheme from '../themes/useCurrentTheme'
@ -249,7 +249,7 @@ const Player = () => {
sendNotification(
info.name,
`${info.singer} - ${info.album}`,
baseUrl(info.cover)
info.cover
)
}
}