1
0
mirror of https://github.com/pocketbase/pocketbase.git synced 2025-03-27 00:09:09 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 {