1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-11-24 07:04:51 +02:00

[#3103] fixed jsvm registerMigrations error message typo

This commit is contained in:
Nikita Zhenev
2023-08-09 18:40:34 +03:00
committed by GitHub
parent f152787578
commit 265dac45ce

View File

@@ -127,7 +127,7 @@ func Register(app core.App, config Config) error {
})
if err := p.registerMigrations(); err != nil {
return fmt.Errorf("registerHooks: %w", err)
return fmt.Errorf("registerMigrations: %w", err)
}
if err := p.registerHooks(); err != nil {