Skip to content

Commit

Permalink
Fix getAllLanguages (#11071)
Browse files Browse the repository at this point in the history
  • Loading branch information
SteVio89 authored Nov 28, 2024
1 parent 91577d4 commit fa144fa
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ private static List<Language> getAllLanguages() {
continue;
}
languages.add(createLanguageObjects(url, className));
languageClassNames.add(className);
if (Premium.isPremiumVersion() && hasPremium(className)) {
languageClassNames.add(className+"Premium");
} else {
languageClassNames.add(className);
}
}
}
}
Expand Down

0 comments on commit fa144fa

Please sign in to comment.