mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Fix a couple errors
This commit is contained in:
parent
37704069f1
commit
ee3978797b
1 changed files with 2 additions and 2 deletions
|
@ -466,7 +466,7 @@ export class ModActionsPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
} catch (e) {
|
||||
return {
|
||||
status: "failed",
|
||||
error: e.getMessage(),
|
||||
error: e.message,
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -525,7 +525,7 @@ export class ModActionsPlugin extends ZeppelinPlugin<TConfigSchema> {
|
|||
} catch (e) {
|
||||
return {
|
||||
status: "failed",
|
||||
error: e.getMessage(),
|
||||
error: e.message,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue