Results 9 comments of gdm257

> I may be missing something but feels unnecessary to have an option for this when it could be hinted by the https prefix on `server` or the port number...

> I think it would be better to allow the user to input numbers, then convert to a string before sending to their api. Requiring the user to put quotes...

我遇到的更加极端,只有启动后的第一次 RSS 解析才能正常运行,之后就再也没有新的 episodes。版本 v3.1.12,网页能正常访问,日志全是 `[Renamer]`,我怀疑是不是什么地方阻塞或死循环了 ``` [2024-03-17 05:23:16] DEBUG: Calling on_field_start with no data [2024-03-17 05:23:16] DEBUG: Calling on_field_name with data[0:8] [2024-03-17 05:23:16] DEBUG: Calling on_field_data with data[9:14] [2024-03-17...

> 我之前也是如此,后来好想关闭了CSRF 就好了 不太像是 CSRF 的问题。AutoBangumi 是用三方库 `qbittorrent-api` 来连接 qb 的,走的是 qb 的 API (JSON)。而 CSRF 一般只有 WebUI (HTML) 才用

It seems some compatibility problems #982 for postgres

I notice that the latest version supported by kubevela is 1.26. So I create a new v1.26 cluster by k3d with default config, and deploy kubevela and addons. `fluxcd` still...

> 其实有好办法,在元数据中加个标识,通过统一的中间件读取这个标识做判断。我搞个example和文档。 中间件只拿到个 `r *ghttp.Request`,要怎么获取到元数据呢?~~看了一圈好像并没有获取 `XxxReq` `XxxRes` 的办法~~ 可以用 `r.GetServeHandler().Handler.Info.Type` 拿到路由方法的反射类型: ```go func MiddlewareDemo(r *ghttp.Request) { handler := r.GetServeHandler() var req reflect.Type = handler.Handler.Info.Type.In(1) var res reflect.Type = handler.Handler.Info.Type.Out(0) logger...

It seems host user `1000` has not permission to read/write `/root/dockers/syncyomi/config`. To grant permissions, run: `sudo chmod -R 777 /root/dockers/syncyomi/config` or `sudo chown -R 1000:1000 /root/dockers/syncyomi/config; sudo chmod -R 770...