taconaut wrote:SubJunk wrote:Unfortunately there have been a lot of large code updates made by other developers lately that I don't have time to go over, so it's up to them to fix their mistakes
Scary, when core functionalities having been ok forever break. Sure this is part of the main trunk?
I'm dead sure about this. If I just merge in all of 100+ last commits and try to run it crashes everywhere. no plugin work and even after I recompiled all plugins there are crashes all over the place plus of course nothing plays...
For example simple things. In Request there is a construct like
if(timeseek > 0 && dlna !=null)
now someone changed timeseek from a double to a Double thus a real type to an object. This works as long as timseek is initialized, but it might not be. An unitialized object is null and null > 0 works in C but not in java.
