inhibit grade updates on just submitted work
This commit is contained in:
parent
fc21f4b0f1
commit
8142e8161e
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@ impl Grading {
|
||||||
if old.last_updated() < new.last_updated() {
|
if old.last_updated() < new.last_updated() {
|
||||||
updates.push(new);
|
updates.push(new);
|
||||||
}
|
}
|
||||||
} else {
|
} else if new.last_updated().is_some() {
|
||||||
updates.push(new);
|
updates.push(new);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue