Skip to content

Commit cdd4489

Browse files
authored
Fix incorrect parameter names in share URL for invidious plugin (#1030)
1 parent 1520342 commit cdd4489

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/org/xbmc/kore/utils/PluginUrlUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@ public static String toInvidiousYouTubePluginUrl(Uri playUri) {
8383
.scheme("plugin")
8484
.authority("plugin.video.invidious")
8585
.path("/")
86-
.appendQueryParameter("action", "play_video");
86+
.appendQueryParameter("action", "play");
8787

88-
String videoIdParameterKey = "video_id";
88+
String videoIdParameterKey = "videoId";
8989

9090
String videoId;
9191
if (host.endsWith("youtube.com")) {

0 commit comments

Comments
 (0)