Skip to content
This repository was archived by the owner on Jul 24, 2023. It is now read-only.

Commit ab673dd

Browse files
authored
Merge pull request #223 from jellyfin/version
Fix issue with player notification and bump version
2 parents bc0f958 + 3e81c00 commit ab673dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<widget id="org.jellyfin.mobile" version="0.9.5" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
2+
<widget id="org.jellyfin.mobile" version="0.9.6" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
33
<name>Jellyfin</name>
44
<description>
55
Jellyfin Mobile

src/NativeShell/src/RemotePlayerService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public void onReceive(Context context, Intent intent) {
8181
};
8282

8383
private static void sendCommand(String action) {
84-
String url = "javascript:require(['inputmanager'], function(inputmanager){inputmanager.trigger('" + action + "');});";
84+
String url = "javascript:require(['inputManager'], function(inputManager){inputManager.trigger('" + action + "');});";
8585
NativeShell.cordovaWebView.loadUrlIntoView(url, false);
8686
}
8787

0 commit comments

Comments
 (0)