Change back line seperators

This commit is contained in:
2022-08-05 15:21:00 +02:00
parent 752b3253d9
commit c301923c24

View File

@@ -168,7 +168,7 @@ public class TippligaGoogleEventManager {
private static String getDescription(Integer season, Integer league, Integer matchday, Integer deliverDateNumber) {
league = league == 2 ? 1 : league;
return "Saison: " + season + "\r\n" + "Liga: " + league + "\r\n" + "Spieltag: " + matchday + "\r\n" + "Abgabeschluss: " + deliverDateNumber;
return "Saison: " + season + "\n" + "Liga: " + league + "\n" + "Spieltag: " + matchday + "\n" + "Abgabeschluss: " + deliverDateNumber;
}
public static void updateAllMatchdays(ArrayList<TLWMatchday> matchdays) {