Moritz Raguschat

Results 18 comments of Moritz Raguschat

Sorry, I'm not familiar with your unit testing. So it would be great if you could take it up from here. An example plugin which includes a script ending with...

@Klap-in Sorry, I'm not familiar with your unit tests so am not sure if I understand all around correctly. Since the change in functionality here is just to allow '.'...

Changing the line `if($val == '' || !count($val)) continue;` to `if($val == '' || is_null($val) || (is_array($val) && count($val) == 0)) continue;` seems to be a valid workaround.

Okay, [I did](https://github.com/splitbrain/dokuwiki-plugin-data/pull/221). Just am not completely sure if that is all there is to it, just my particular use-case does not print a warning anymore. Oh, and it seems...

Which browser are you using? There was this recent change in Chromium (so probably all Chromium-based browsers like Chrome, Edge, ... affected as well) which limited the number of simultaneous...

@sebelga A use case for not wanting to index a property for some entities might be properties that can be larger than 1500 bytes on occasion. Datastore would not be...

> Hi @trollkotze > Sorry for coming back late on this. Do you mind creating a new issue with this as a question so this thread does not change the...

Long rambling quoted from where the issue was first formulated (and removed now from there), for reference: > > @sebelga Thanks for getting back! > > > Can I ask...

How would one detect a bot? I understand that one could a headless browser as such, and I guess almost all bots would operate through a headless browser. No? Edit:...

Same here, `deno run -Ar --unstable https://deno.land/x/[email protected]/examples/window.ts` crashing after a few seconds (sometimes enough time to move the window around for a bit). Running on Ubuntu 20.04, deno installed from...