Christian Winther
Christian Winther
@jamespanic this should be fixed in https://github.com/pixelfed/pixelfed/pull/5035
This should be fixed now via #5035
https://github.com/pixelfed/pixelfed/pull/4921 +https://github.com/pixelfed/pixelfed/pull/4922 was intended to fix this :)
@CDN18 did you disable the `11-first-time-setup` script or have `DOCKER_APP_RUN_ONE_TIME_SETUP_TASKS=0` ? They should be created if `OAUTH_ENABLED` is `true` and the `first-time-setup` script is allowed to run
Can you try an older version? maybe https://github.com/FriendsOfCake/crud-view/commit/991a198d708cc83477216e3dea38bcae2b904af2 caused issues
@chenrui333 applied your suggested edits :)
Not sure if usable or not, but I implemented this recently in my own project ([source](https://github.com/jippi/scm-engine/blob/main/pkg/stdlib/functions.go#L23-L53) + [docs](https://jippi.github.io/scm-engine/github/script-functions/#uniq)) I couldn't figure out how to make the input accept `cmp.Ordered` instead...
If you haven't looking into [go-cty](https://github.com/zclconf/go-cty), then I can 10/10 recommend it for a pseudo-type system like this - it's really flexible and powerful :)
being able to pick `fmt.Stringer` or `expr.Stringer` (as a `ExprString()` interface) would be neat to opt in to behavior and differentiate behaviour if desired :)
The valuer worked for me 👍 though it was a bit tedious having to repeat this code a handful of times ```go func (d MyType) AsString() string { return d.String()...