diff options
| author | 2025-04-11 16:36:40 +0200 | |
|---|---|---|
| committer | 2025-04-11 15:36:40 +0100 | |
| commit | c8a780e12a8112a4d4cbe8ed72d241a382f73903 (patch) | |
| tree | b385a1d5e11a0de4a84bba01d44e2b2b75abff16 /internal/gtsmodel/account.go | |
| parent | [chore] Fix header insets (#3987) (diff) | |
| download | gotosocial-c8a780e12a8112a4d4cbe8ed72d241a382f73903.tar.xz | |
[bugfix] Fix setting bot on/off (#3986)
* [bugfix] Fix setting bot on/off
* read client messages in tests
* test fix
Diffstat (limited to 'internal/gtsmodel/account.go')
| -rw-r--r-- | internal/gtsmodel/account.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/gtsmodel/account.go b/internal/gtsmodel/account.go index d681304ba..c2ab1c9a4 100644 --- a/internal/gtsmodel/account.go +++ b/internal/gtsmodel/account.go @@ -431,7 +431,7 @@ func (t AccountActorType) String() string { case AccountActorTypeService: return "Service" default: - panic("invalid notification type") + panic("invalid actor type") } } |
