Skip to content

Commit 2e57025

Browse files
committed
Fix constants in standalone flavor
1 parent 7825414 commit 2e57025

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

catroid/src/standalone/java/org/catrobat/catroid/common/FlavoredConstants.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ public final class FlavoredConstants {
5353

5454
// Media Library:
5555
public static final String LIBRARY_BASE_URL = MAIN_URL_HTTPS + "/app/download-media/";
56-
public static final String LIBRARY_LOOKS_URL = BASE_URL_HTTPS + "media-library/looks";
57-
public static final String LIBRARY_OBJECT_URL = BASE_URL_HTTPS + "media-library/objects";
58-
public static final String LIBRARY_BACKGROUNDS_URL_PORTRAIT = BASE_URL_HTTPS + "media-library/backgrounds-portrait";
59-
public static final String LIBRARY_BACKGROUNDS_URL_LANDSCAPE = BASE_URL_HTTPS + "media-library/backgrounds-landscape";
60-
public static final String LIBRARY_SOUNDS_URL = BASE_URL_HTTPS + "media-library/sounds";
56+
public static final String CATROBAT_BASE_URL = "https://catrobat.org/";
57+
public static final String CATROBAT_CONTENT_DOWNLOAD_URL = CATROBAT_BASE_URL + "wp-content/";
58+
public static final String CATROBAT_CONTENT_LOOKS_URL = CATROBAT_BASE_URL + "figures-download/";
59+
public static final String CATROBAT_CONTENT_SOUNDS_URL = CATROBAT_BASE_URL + "sounds-download/";
60+
public static final String CATROBAT_CONTENT_BACKGROUNDS_URL = CATROBAT_BASE_URL + "backgrounds-download/";
6161
public static final String PRIVACY_POLICY_URL = "https://catrob.at/privacypolicy";
6262

6363
private FlavoredConstants() {

0 commit comments

Comments
 (0)