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

short fix for + splitting

parent 3587c034
No related branches found
No related tags found
1 merge request!1Appointments dev
......@@ -149,7 +149,7 @@ public class LihControlParser extends SubjectParser {
if (languages.indexOf(",") >= 0) {
langAbbreviations = languages.split(",");
} else if (languages.indexOf("+") >= 0) {
langAbbreviations = languages.split("+");
langAbbreviations = languages.split("\\+");
} else {
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