This commit is contained in:
UKDTOM 2021-03-21 13:52:14 +01:00
parent 9dd7dd07b6
commit f4a094e34c
2 changed files with 3 additions and 2 deletions

View file

@ -6,6 +6,7 @@
* [#305 First launch after an upgrade should show changelog](https://github.com/WebTools-NG/WebTools-NG/issues/305)
* [#311 Test all defined fields against movie export](https://github.com/WebTools-NG/WebTools-NG/issues/311)
* [#312 IMDB and IMDB link broken](https://github.com/WebTools-NG/WebTools-NG/issues/312)
## V0.2.02

View file

@ -688,7 +688,7 @@ const excel2 = new class Excel {
break;
}
strStart = val.substring(start);
end = strStart.indexOf("-");
end = strStart.indexOf(wtconfig.get('ET.ArraySep'));
result = ''
if (end == -1)
{ result = strStart.substring(7) }
@ -709,7 +709,7 @@ const excel2 = new class Excel {
break;
}
strStart = val.substring(start);
end = strStart.indexOf("-");
end = strStart.indexOf(wtconfig.get('ET.ArraySep'));
result = ''
if (end == -1)
{ result = strStart.substring(7) }