Cédric Van Rompay

Results 8 issues of Cédric Van Rompay

### Issue Description **Abstract:** [`func (r *Router) Find(method, path string, c Context)` (in file `router.go`)](https://github.com/labstack/echo/blob/7d41537e70ce8e3e25c2e8199c798c7cfe3d4299/router.go#L376) is sometimes given a *raw* path instead of a unescaped path, but because it has...

discussion

Fixes https://github.com/digitalbazaar/pyld/issues/133 If headers were passed during call to `requests_document_loader`, these headers will be forced in call to `requests.get`.

Trying to follow the installation instructions from the README: ``` $ go install github.com/pierrec/lz4/v4/cmd/lz4c go install: version is required when current directory is not in a module Try 'go install...

### Describe the bug SvelteKit has the following `catch` block at the very beginning of request handling: ```js } catch (err) { res.statusCode = err.status || 400; res.end('Invalid request body');...

error handling
pkg:adapter-node

**Is your feature request related to a problem? Please describe.** In some cases it is a problem that the video controls hide the bottom of the video. **Describe the solution...

question
improvement

I lost quite some time with a bug that was caused by me calling `MatrixClient.createRoom` then `MatrixClient.getRooms` without having called `MatrixClient.startClient` (as a result the client was not syncing and...

T-Enhancement
Help Wanted
A-Documentation
Easy

When joining a room using `MatrixClient.joinRoom()`, if this room is encrypted, the crypto setup routine starts (you can see `Enabling encryption in ![...]` in the console and all)... but `joinRoom()`...

T-Defect
Help Wanted
Easy

Here is `IndexedDBCryptoStore.getAllEndToEndSessions`: ```javascript getAllEndToEndSessions(txn, func) { const objectStore = txn.objectStore("sessions"); const getReq = objectStore.openCursor(); getReq.onsuccess = function() { const cursor = getReq.result; if (cursor) { func(cursor.value); cursor.continue(); } else...