Merge pull request 'Alters the metadata sent to google cast to reflect the station rather the song when cast began.' (#8) from cast_station_name_not_current_track into main

Reviewed-on: http://192.168.1.74:30008/kfj001/kryz-go-flutter/pulls/8
This commit was merged in pull request #8.
This commit is contained in:
2026-05-17 14:32:58 -07:00
@@ -251,8 +251,8 @@ class MainActivity : AudioServiceActivity(), MethodChannel.MethodCallHandler, Ev
}
val streamUrl = arguments["streamUrl"] as? String
val title = arguments["title"] as? String ?: "Live Stream"
val subtitle = arguments["subtitle"] as? String ?: ""
val title = "KRYZ 98.5 LPFM Mariposa Community Radio"
val subtitle = "Live Stream"
if (streamUrl.isNullOrBlank()) {
result.error("invalid_stream_url", "streamUrl is required", null)