SpacingBat3

Results 266 comments of SpacingBat3

> Great work narrowing it to actual PR. Btw, one in 100 attempts or so, the BrowserView actually rendered for me. That's when I started digging that maybe my code...

I don't think args are provided by the untrusted code, so it makes sense why that function can run outside of the sandbox (if it didn't I guess the `console.log`...

Just a note that `colors/safe` still works fine through.

> I added the French translation. There are some words and sentences that I left "to check" because it depends on the context. I will be able to correct this...

> (...) and it opens as an XWayland window. How did you checked that? `xeyes`? Just in case CSD is enforced by another flag, but I'm unsure whenever that should...

> Turns out the binary installed as `/sbin/webcord` (...) (Just in case it is installed in `/usr/bin/webcord`, `sbin` is just a symlink. I just say that so no one can...

Fixed in [`aur/webcord-git@2e043b1`](https://aur.archlinux.org/cgit/aur.git/commit/?h=webcord-git&id=2e043b170b87b4dbd33c964320bf0876037def56 "Update PKGBUILD and .SRCINFO • Add shellcheck directive. • Use pacman/AUR packages over NPM ones (experimental). • Replace deprecated shell syntax with modern equivalents. • Bump pkgver....

It doesn't fail for me when directly building (without makepkg) as well as GitHub Actions confirms that `package.json` includes all needed type definitions definied as `devDependencies` (it does not fail)....

Take a look at this part of `webcord`'s PKGBUILD: ```sh prepare() { cd "${srcdir}" npm i --ignore-scripts \ "@tsconfig/node16-strictest"@"^1.0.0" \ "@types/dompurify"@"^2.3.3" \ "@types/marked"@"^4.0.2" \ "@types/semver"@"^7.3.9" \ "@types/source-map-support"@"^0.5.4" \ "@types/spdx-expression-parse"@"^3.0.1" \...

UPDATE: Actually I've found that `@types/node` is being installed, but `npm i --omit=dev` removes it. It then further fails because of this. Definitely an issue caused by PKGBUILD, outside of...