Jian Li

Results 22 comments of Jian Li

For people who use VSCode Remote, you have to configure rustup path in the Remote profile settings. It works for me. ``` { "rust-client.rustupPath": "~/.cargo/bin/rustup", } ```

@brandly The problem here is not about `youtubeRegexp`, it's about `string.replace()` function, it always returns a string even if the regexp doesn't match the given string. So when `getIdFromURL` function...

I'm having the same issue on macOS with Lua-5.3.5. I have to remove the latest lua-cjson(2.1.0.6-1) and install a previous version(2.1.0-1) instead.

This issue was fixed by somebody, thank you.

The latest several versions of Echo supports this behavior like the following: ``` type Event struct { gorm.Model Code []InvideCode `form:"codes[]"` } ```

> > The latest several versions of Echo supports this behavior like the following: > > ``` > > type Event struct { > > gorm.Model > > Code []InvideCode...

> Logto needs to use the user's username and password information to request permission from the LDAP server. Logto's password encryption algorithm may differ from LDAP's, how can this be...

This is caused by obsolete Logto go module. Check and update your go.mod manually, remove possibly: ``` github.com/logto-io/go/core // legacy obsolete module github.com/logto-io/go/client // save as above ``` and replace...

@caiyili Thank you very much, it works.