updated linter and bumped app version

This commit is contained in:
Gani Georgiev
2026-08-22 23:11:51 +03:00
parent c532fd19b6
commit eae29c83a8
16 changed files with 3346 additions and 3326 deletions
File diff suppressed because it is too large Load Diff
+2 -1
View File
@@ -194,7 +194,8 @@ func (p *plugin) migrateCreateHandler(template string, args []string, interactiv
}
func (p *plugin) migrateCollectionsHandler(args []string, interactive bool) (string, error) {
createArgs := []string{"collections_snapshot"}
createArgs := make([]string, 0, len(args)+1)
createArgs = append(createArgs, "collections_snapshot")
createArgs = append(createArgs, args...)
collections := []*core.Collection{}