File tree 1 file changed +16
-7
lines changed
1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -1064,13 +1064,22 @@ export const actions: {[k: string]: QueryHandler} = {
1064
1064
} catch ( e : any ) {
1065
1065
throw new ActionError ( "Failed to update Smogon suspect test record: " + e . message ) ;
1066
1066
}
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
+ }
1074
1083
return { success : true } ;
1075
1084
} ,
1076
1085
async 'suspects/end' ( params ) {
You can’t perform that action at this time.
0 commit comments