Markus Ast

Results 221 comments of Markus Ast

@qur2 `passport` does not work with Koa directly. That is, you have to use `koa-passport` or `koa-passport-fw` (both use the `framework` mechanism introduced in `passport` 0.2.0).

> Edit: `env.ASSETS.fetch(request.url)` doesn't work at all on Cloudflare Pages, returns 406 - Not Acceptable HTTP Code. Can confirm. wrangler@pagesCloudflare Pages env.ASSETS.fetch(request)❌✅ env.ASSETS.fetch(request.url)✅❌ > Another thing that I have noticed...

I've the same change in a local fork of `rusqlite`. It builds fine, but it isn't running. The error it throws is: ``` WebAssembly.instantiate(): Import #1 module=\"env\" function=\"sqlite3_os_init\" error: function...

@trevyn Good call, `wasm32-wasi-vfs` indeed fixes the error and does not require to provide a custom `sqlite3_os_init`. However, in my particular use-case, where I am going to use a custom...

Same here. However, from the logs it looks like it tries to access the database via sftp. Is that even a safe approach considering that there might be other concurrent...

Hi, in which browser are you opening and saving the document, and you are using an acrobat browser extension I presume?

I think I am still doing it wrong when trying to reproduce. This is what I am doing: 1. Open http://pdfjs.rkusa.st/ in Chrome 2. Download the resulting PDF (using the...

Thanks for the additional details, I am able to reproduce it now. Though I have no idea yet what the issue might be, especially since the error message lacks details...

Thanks for the report. You aren't doing anything wrong. Page numbers are just not added to external pages right now. They are mostly copy and pasted in your new documented...

@vivekkeswaran This is not on my roadmap. The only workaround I can think of is to [add the external page as an image](https://github.com/rkusa/pdfjs/blob/main/docs/fragment.md#imageimg-opts) that spans the whole page. It's quite...