diff options
| author | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-06-16 16:03:54 -0700 |
|---|---|---|
| committer | Jeff Halter <868228+jhalter@users.noreply.github.com> | 2024-06-16 16:05:25 -0700 |
| commit | 0ed5132769e88cb385b5240986b706430f0ccd72 (patch) | |
| tree | bd622161546d9db3293ba69afc9646bcdb24b2f4 /hotline/account.go | |
| parent | f6f1d88969e12eadb7013397cdad3c4c5625988c (diff) | |
Fix broken io.Reader implementations
Diffstat (limited to 'hotline/account.go')
| -rw-r--r-- | hotline/account.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hotline/account.go b/hotline/account.go index 3ad0687..18965ed 100644 --- a/hotline/account.go +++ b/hotline/account.go @@ -15,7 +15,7 @@ type Account struct { Login string `yaml:"Login"` Name string `yaml:"Name"` Password string `yaml:"Password"` - Access accessBitmap `yaml:"Access"` + Access accessBitmap `yaml:"Access,flow"` readOffset int // Internal offset to track read progress } |