1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix import statement in photo player

Co-authored-by: Dmitry Lyzo <56478732+dmitrylyzo@users.noreply.github.com>
This commit is contained in:
dkanada 2020-05-29 16:47:21 +09:00 committed by GitHub
parent 70ab8af6e7
commit c13fc65dd0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ export class PhotoPlayer {
return new Promise(function (resolve, reject) { return new Promise(function (resolve, reject) {
import('slideshow').then(slideshow => { import('slideshow').then(({default: slideshow}) => {
var index = options.startIndex || 0; var index = options.startIndex || 0;