Rename videoURL to streamUrl

This commit is contained in:
Stypox 2023-02-25 09:08:48 +01:00
parent c2968a3ff2
commit 24ff6a4313
No known key found for this signature in database
GPG Key ID: 4BDF1B40A49FDD23
1 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ public final class KoreUtils {
/**
* Start an activity to install Kore.
*
* @param context the context
* @param context the context to use
*/
public static void installKore(final Context context) {
installApp(context, context.getString(R.string.kore_package));
@ -51,13 +51,13 @@ public final class KoreUtils {
* Kore source code
* </a>.
*
* @param context the context to use
* @param videoURL the url to the video
* @param context the context to use
* @param streamUrl the url to the stream to play
*/
public static void playWithKore(final Context context, final Uri videoURL) {
public static void playWithKore(final Context context, final Uri streamUrl) {
final Intent intent = new Intent(Intent.ACTION_VIEW)
.setPackage(context.getString(R.string.kore_package))
.setData(videoURL)
.setData(streamUrl)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
if (!tryOpenIntentInApp(context, intent)) {