mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-08-11 16:13:41 +02:00
Podcasts add get episode feed and download, add edit podcast episode modal
This commit is contained in:
@ -25,7 +25,7 @@ Vue.prototype.$addDaysToToday = (daysToAdd) => {
|
||||
}
|
||||
|
||||
Vue.prototype.$bytesPretty = (bytes, decimals = 2) => {
|
||||
if (isNaN(bytes) || !bytes === 0) {
|
||||
if (isNaN(bytes) || bytes == 0) {
|
||||
return '0 Bytes'
|
||||
}
|
||||
const k = 1024
|
||||
|
Reference in New Issue
Block a user