Mohammad Afshar
Mohammad Afshar
If a file name has quotes in it, the generated link gets trimmed by the quote, making it impossible to click on the link and download the file.
Actually I have many groups and channels thus many users. ``` Exception in thread "Thread-16" java.lang.StackOverflowError at sun.misc.URLClassPath.getResource(URLClassPath.java:211) at java.net.URLClassLoader$1.run(URLClassLoader.java:365) at java.net.URLClassLoader$1.run(URLClassLoader.java:362) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:361) at java.lang.ClassLoader.loadClass(ClassLoader.java:424) at...
After a lot of headache described in #16 I decided to restart the TelegramBot or maybe only the DefferenceHandler or KernelComm after StackOverFlow. How can I do this? How about...
In `ChatUpdatesBuilderImpl` class we have `private final Class updatesHandlerBase;` as a field. Then in `public UpdatesHandlerBase build()` function we have: ``` final Constructor constructor = updatesHandlerBase.getConstructor(IKernelComm.class, IDifferenceParametersService.class, DatabaseManager.class); final CustomUpdatesHandler...
The class `UpdatesHandlerBase` constructor is not public so it's impossible to extend it from an external package. It's simply possible to extend `DefaultUpdatesHandler`, but in the README it's written: >...