Closed kratoze closed 3 years ago
I had the same issue as #12 and was able to fix it on my system.
The regular expression used to find the current displayId was leaving behind some characters making displays undefined.
I changed the regex from '/\//g' to '/\D+/g' which has fixed the error for me, and hopefully is a suitable fix.
Closes #12
Thanks!
I had the same issue as #12 and was able to fix it on my system.
The regular expression used to find the current displayId was leaving behind some characters making displays undefined.
I changed the regex from '/\//g' to '/\D+/g' which has fixed the error for me, and hopefully is a suitable fix.
Closes #12