Skip to content

Commit 1898067

Browse files
committed
Allow editing suspect tests without overwriting start date
1 parent 7d393df commit 1898067

File tree

1 file changed

+16
-7
lines changed

1 file changed

+16
-7
lines changed

src/actions.ts

+16-7
Original file line numberDiff line numberDiff line change
@@ -1064,13 +1064,22 @@ export const actions: {[k: string]: QueryHandler} = {
10641064
} catch (e: any) {
10651065
throw new ActionError("Failed to update Smogon suspect test record: " + e.message);
10661066
}
1067-
await tables.suspects.replace({
1068-
formatid: id,
1069-
start_date: start,
1070-
elo: reqs.elo || null,
1071-
gxe: reqs.gxe || null,
1072-
coil: reqs.coil || null,
1073-
});
1067+
const existing = await tables.suspects.get(id);
1068+
if (existing) {
1069+
await tables.suspects.update(id, {
1070+
elo: reqs.elo || null,
1071+
gxe: reqs.gxe || null,
1072+
coil: reqs.coil || null,
1073+
});
1074+
} else {
1075+
await tables.suspects.insert({
1076+
formatid: id,
1077+
start_date: start,
1078+
elo: reqs.elo || null,
1079+
gxe: reqs.gxe || null,
1080+
coil: reqs.coil || null,
1081+
});
1082+
}
10741083
return {success: true};
10751084
},
10761085
async 'suspects/end'(params) {

0 commit comments

Comments
 (0)