Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

see #987 #988

Merged
merged 2 commits into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
group = 'de.mediathekview'
archivesBaseName = "MServer"
version = '3.1.233'
version = '3.1.234'

def jarName = 'MServer.jar'
def mainClass = 'mServer.Main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ public class ArdFilmDeserializer implements JsonDeserializer<List<ArdFilmDto>> {
ADDITIONAL_SENDER.put("radio_bremen", "rbtv");
ADDITIONAL_SENDER.put("tagesschau24", Const.ARD);
ADDITIONAL_SENDER.put("das_erste", Const.ARD);
ADDITIONAL_SENDER.put("one", "ONE"); // ONE
ADDITIONAL_SENDER.put("ard-alpha", "ARD-alpha"); // ARD-alpha
ADDITIONAL_SENDER.put("one", Const.ARD); // ONE
ADDITIONAL_SENDER.put("ard-alpha", Const.ARD); // ARD-alpha
ADDITIONAL_SENDER.put("funk", "Funk.net"); // Funk.net
ADDITIONAL_SENDER.put("sr", Const.SR);
ADDITIONAL_SENDER.put("phoenix", Const.PHOENIX);
Expand Down
Loading