mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
fix default export for photo player
This commit is contained in:
parent
c13fc65dd0
commit
f0d337ee37
1 changed files with 1 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
import connectionManager from 'connectionManager';
|
import connectionManager from 'connectionManager';
|
||||||
|
|
||||||
export class PhotoPlayer {
|
export default class PhotoPlayer {
|
||||||
constructor() {
|
constructor() {
|
||||||
this.name = 'Photo Player';
|
this.name = 'Photo Player';
|
||||||
this.type = 'mediaplayer';
|
this.type = 'mediaplayer';
|
||||||
|
@ -43,5 +43,3 @@ export class PhotoPlayer {
|
||||||
return (mediaType || '').toLowerCase() === 'photo';
|
return (mediaType || '').toLowerCase() === 'photo';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export default PhotoPlayer;
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue