John White
John White
I'm posting because this took me days of troubleshooting, there's a few non-intuitive things that if addressed have the chance to help a lot of users: • Logging is nonexistent...
Just a quick note on a counterintuitive behavior of Navidrome (the rest is excellent, good job), when playlists are imported from .m3u, they're visible only to the admin user, and...
**I'm submitting a ...** (check one with "x") ``` [x] bug report ``` **Plunkr Case (Bug Reports)** https://github-jltrhy-tmo8hc.stackblitz.io **Current behavior** As you can see the inputgroup doesn't grow well when...
See https://github.com/navidrome/navidrome/pull/3143
Hi, I'm in the process of writing some code in a model that requires a related entity to be loaded (a calculation doing a summary), here's an example of the...
There's a missing error check in the mentioned file, so a file reading error is ignored. It should be trivial to fix. ```go // GenAST creates an *ast.File containing type...
1. API should be declared outside try block or it won't be seen by finally ```python api = UptimeKumaApi(BASE_URL) try: ... ``` 2. It should ignore inactive monitors ```python monitor_total...
Hi, long time user of go-pg/bun. It seems that one thing I've missed since the start are foreign keys. I thought the ORM doesn't support them, but digging in the...
Hi, I'm creating indexes with the ORM, and it's all good, but it took a lot of searching and some trial and error. The documentation seems very poor about this,...
Hi, for performance reasons (and coherence with the standard `sql` query), when doing `db.NewRaw(query)` the returned object should have the `.Rows()` property for using an iterator instead of scanning the...