Skip to content

Commit cba272d

Browse files
committed
fix: Don't send unaliased command for editing
1 parent 969826e commit cba272d

File tree

1 file changed

+1
-1
lines changed
  • pueue_lib/src/network/message

1 file changed

+1
-1
lines changed

pueue_lib/src/network/message/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl From<&Task> for EditableTask {
2424
fn from(value: &Task) -> Self {
2525
EditableTask {
2626
id: value.id,
27-
command: value.command.clone(),
27+
command: value.original_command.clone(),
2828
path: value.path.clone(),
2929
label: value.label.clone(),
3030
priority: value.priority,

0 commit comments

Comments
 (0)