pjft

Results 181 comments of pjft

Thank you @LibertusDio . Apologies for the dumb question, but how can I apply that specific change on my end? I can find the two `core-unified-search.js` and `core-unified-search.js.map` files, but...

Just to update that, for some reason, replacing the files and restarting the server didn't seem to do the trick - though I'm perfectly open to me having done something...

Got it, that makes sense. Also, I do confirm your fix: commit `f0cd60b21bd5d1a0d493dbe222743d3c3040bc98` works as intended. Commit `08adbbd7ef3f11b7582c4296b6ac4a39ac63b7d0` breaks things. Thank you.

Thanks. I confirm that - Commit f0cd60b21bd5d1a0d493dbe222743d3c3040bc98 works as intended. - Commit 08adbbd7ef3f11b7582c4296b6ac4a39ac63b7d0 breaks things. There was a regression here. I'll be reverting it for now. Best.

Just to update that it's still broken in today's release of 25.0.3 . **This is not recommended, it's an unsupported setup, it will not benefit from other fixes and might...

Just to inform that applying this workaround on 25.0.4 will make search not show up at all now. It might be related to the new "Contacts Search" dialog. Maybe if...

Thank you! Can we expect it to be backported to 25? The auto-backport seems to have failed, and I'd love to test it out. Our challenge here was, when we...

I get this as well on Linux. Tried to download 5GB of multiple folders with smaller files, and the tar file comes back with 257MB only. ~If it's downloaded as...

After further investigation, I am not convinced that this has anything to do with a PHP version incompatibility - at least not directly. The error does not happen all the...

In my case, this is fixed with the following change: In `/var/www/html/nextcloud/3rdparty/deepdiver1975/tarstreamer/src/TarHeader.php` Change: ``` ['a12', str_pad(decoct($this->size), 11, '0', STR_PAD_LEFT)], ['a12', str_pad(decoct($this->mtime), 11, '0', STR_PAD_LEFT)], ``` To: ``` ['a12', str_pad(decoct((int)$this->size), 11,...