3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-18 15:45:03 +00:00

Fix a couple errors

This commit is contained in:
Dragory 2020-04-21 19:03:32 +03:00
parent 301ea2f122
commit c2e1463897

View file

@ -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,
};
}