Add output indicating success for restore channel command (#13802)

Co-authored-by: mattermod <mattermod@users.noreply.github.com>
Этот коммит содержится в:
Arianna Vespri
2020-02-27 15:15:21 +01:00
коммит произвёл GitHub
родитель 376ec9e0e3
Коммит 146afedd51

Просмотреть файл

@@ -482,6 +482,11 @@ func restoreChannelsCmdF(command *cobra.Command, args []string) error {
}
}
suffix := ""
if len(channels) > 1 {
suffix = "s"
}
CommandPrintln("Successfully restored channel" + suffix)
return nil
}