diff --git a/changelog/unreleased/bugfix-video-dimensions b/changelog/unreleased/bugfix-video-dimensions new file mode 100644 index 00000000000..f85a2a3d070 --- /dev/null +++ b/changelog/unreleased/bugfix-video-dimensions @@ -0,0 +1,7 @@ +Bugfix: Displaying full video in their dimensions + +We've fixed a bug which set the video width and height to 100% of the screen size instead of the actual video size. +This bug made it impossible to see the full video in 1080x1920, while 1920x1080 might have been slightly cropped. + +https://github.com/owncloud/web/issues/10010 +https://github.com/owncloud/web/pull/10101 diff --git a/packages/web-app-preview/src/components/Sources/MediaVideo.vue b/packages/web-app-preview/src/components/Sources/MediaVideo.vue index c568fa7a482..77e1307427a 100644 --- a/packages/web-app-preview/src/components/Sources/MediaVideo.vue +++ b/packages/web-app-preview/src/components/Sources/MediaVideo.vue @@ -1,10 +1,16 @@