Skip to content

Commit

Permalink
Fix broken suspend command
Browse files Browse the repository at this point in the history
During refactoring, suspend forwarded to reload instead of suspend. Fix that.
  • Loading branch information
danrahn committed Apr 30, 2024
1 parent d99c7b3 commit e949b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Script/Commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ export const ServerCommands = {
/**
* Suspend Marker Editor.
* @returns {Promise<void>} */
suspend : () => jsonRequest(PostCommands.ServerReload),
suspend : () => jsonRequest(PostCommands.ServerSuspend),
/**
* Resume a suspended Marker Editor.
* @returns {Promise<void>} */
Expand Down

0 comments on commit e949b8f

Please sign in to comment.