Skip to content
Snippets Groups Projects
Commit 3587c034 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

splitting languages by + added

parent 33ae9fdd
No related branches found
No related tags found
1 merge request!1Appointments dev
...@@ -148,6 +148,8 @@ public class LihControlParser extends SubjectParser { ...@@ -148,6 +148,8 @@ public class LihControlParser extends SubjectParser {
String langAbbreviations[] = new String[] {}; String langAbbreviations[] = new String[] {};
if (languages.indexOf(",") >= 0) { if (languages.indexOf(",") >= 0) {
langAbbreviations = languages.split(","); langAbbreviations = languages.split(",");
} else if (languages.indexOf("+") >= 0) {
langAbbreviations = languages.split("+");
} else { } else {
langAbbreviations = languages.split("/"); langAbbreviations = languages.split("/");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment