diff --git a/persistence/sessions_test.go b/persistence/sessions_test.go index 001cfa0..f7daa3f 100644 --- a/persistence/sessions_test.go +++ b/persistence/sessions_test.go @@ -61,6 +61,7 @@ func TestSessionToMap(t *testing.T) { "hideids": "false", "receipts": "true", "nativeedits": "false", + "ignoregroupdeletions": "false", } if !reflect.DeepEqual(m, sample) { t.Errorf("Map does not match the sample: %v", m) diff --git a/telegram/loginwizard.go b/telegram/loginwizard.go index 0e5cc9e..296e748 100644 --- a/telegram/loginwizard.go +++ b/telegram/loginwizard.go @@ -74,7 +74,7 @@ func (c *Client) wizardStageOrPrompt(stage, message string) { log.Debugf("writing wizard stage %v", stage) c.loginWizard.nextStage <- stage } else { - log.Warn("Skipping stage %v, wizard cannot keep up", stage) + log.Warnf("Skipping stage %v, wizard cannot keep up", stage) } c.loginWizard.chanBusy = true c.locks.loginWizardWriteLock.Unlock()