Skip to content

Commit

Permalink
fix(): java not kt
Browse files Browse the repository at this point in the history
  • Loading branch information
earthonion authored May 20, 2024
1 parent 96646a4 commit 514092c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public static void setVideoId(@NonNull String newlyLoadedVideoId) {
if (!videoId.equals(newlyLoadedVideoId)) {
Logger.printDebug(() -> "New video id: " + newlyLoadedVideoId);
videoId = newlyLoadedVideoId;
videoUrl = "https://youtu.be/$videoId";
videoUrl = "https://youtu.be/" + videoId;
Utils.openUri(Utils.getContext(),videoUrl);
}
}
Expand Down

0 comments on commit 514092c

Please sign in to comment.