zudljk

Results 5 comments of zudljk

It's directly below the note object; this is my workaround: ``` notes.on("end", async zone => { if (notes.folders.length > 0) { var folders = notes.folders.filter(f => !f.recordName.startsWith("TrashFolder")); folders.forEach(async folder =>...

Hi @JOJ0, sorry for the late answer, as far as I remember, the shortGUID property is directly below the note object itself. At least that's where I check for it...

I was having the same problem when I wanted to give Linkwarden a try, but according to my findings, it's not possible. Generally the case with web apps an subpaths...

I'm not entirely sure what you mean ... https://services.example.com/api and https://services.example.com//api are more or less equivalent, browsers and reverse proxies should handle the double / gracefully. Do you want to...

### Workaround If you're using Traefik, you can use the following config in your docker-compose.yml: ``` environment: - "traefik.http.routers.wallabag-redirect.rule=Host(`YOUR_HOSTNAME`) && !PathPrefix(`/wallabag`) && HeadersRegexp(`Referer`, `.*/wallabag.*`)" - "traefik.http.routers.wallabag-redirect.middlewares=add-context" - "traefik.http.middlewares.add-context.redirectregex.regex=^https:\\/\\/([^\\/]+)" - "traefik.http.middlewares.add-context.redirectregex.replacement=https://$$1/wallabag"...