You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Matti I've notice that the new TouckKit example, works only on firefox.
java.lang.IllegalArgumentException: Illegal character in path at index 10: deferredjs\F7B66AFF78B95938200500C14E19DB8B\1.cache.js
at java.net.URI.create(URI.java:852)
at java.net.URI.resolve(URI.java:1036)
at org.vaadin.touchkit.settings.TouchKitSettings.modifyBootstrapPage(TouchKitSettings.java:266)
Maybe something related with file path?
My Configuration:
S.O Windows 10 64-bit
Eclipse 64bit
Vaadin 8 / Jetty
My Patch
if (cachedFilesStarted) {
readLine = readLine.trim();
if (!readLine.isEmpty()) {
if(readLine.contains("\\"))
readLine=readLine.replace("\\", "/");
URI resolved = base.resolve(readLine);
resources.add(resolved.toString());
}
}
The text was updated successfully, but these errors were encountered:
The issue has probably been forever, also in the official Vaadin TouchKit, but now with the recent versions it happens to break Chrome altogether (when using Windows as a development machine).
Hi Matti I've notice that the new TouckKit example, works only on firefox.
java.lang.IllegalArgumentException: Illegal character in path at index 10: deferredjs\F7B66AFF78B95938200500C14E19DB8B\1.cache.js
at java.net.URI.create(URI.java:852)
at java.net.URI.resolve(URI.java:1036)
at org.vaadin.touchkit.settings.TouchKitSettings.modifyBootstrapPage(TouchKitSettings.java:266)
Maybe something related with file path?
My Configuration:
S.O Windows 10 64-bit
Eclipse 64bit
Vaadin 8 / Jetty
My Patch
The text was updated successfully, but these errors were encountered: