mirror of
https://github.com/WebTools-NG/WebTools-NG
synced 2024-11-22 19:13:19 +00:00
Fixed #312
This commit is contained in:
parent
9dd7dd07b6
commit
f4a094e34c
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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) }
|
||||
|
|
Loading…
Reference in a new issue