Skip to content
This repository was archived by the owner on May 28, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Ignore query arguments in single video share
Same fix as commit 4da10ee for stable15

Signed-off-by: Mathieu Débit <[email protected]>
  • Loading branch information
MathieuDebit committed Mar 17, 2019
commit 27dfbd39f089fd447c8951088dfa24a2e2561b99
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

Skin: https://github.com/cabin/videojs-sublime-skin
</description>
<version>1.4.0</version>
<version>1.4.1</version>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No need to bump the version in this PR.

<licence>MIT</licence>
<author>Björn Korella</author>
<default_enable/>
Expand Down
2 changes: 1 addition & 1 deletion js/viewer.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ $(document).ready(function(){
}

if($('#body-public').length && $('#imgframe').length && isSupportedMimetype) {
var videoUrl = window.location + '/download';
var videoUrl = window.location.href.split('?')[0] + '/download';
videoViewer.onViewInline($('#imgframe'), videoUrl, mimetype);
}

Expand Down