mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2025-06-19 16:15:16 +00:00
Add missing awaits
This commit is contained in:
@ -175,15 +175,15 @@ export class SurveyHelper {
|
||||
public static async Delete(postID: number) {
|
||||
const surveyID = await this.GetID(postID);
|
||||
|
||||
DatabaseHelper.DeleteRows(SURVEY_RESPONSE_TABLE, {
|
||||
await DatabaseHelper.DeleteRows(SURVEY_RESPONSE_TABLE, {
|
||||
ID_sondage: surveyID
|
||||
});
|
||||
|
||||
DatabaseHelper.DeleteRows(SURVEY_CHOICES_TABLE, {
|
||||
await DatabaseHelper.DeleteRows(SURVEY_CHOICES_TABLE, {
|
||||
ID_sondage: surveyID
|
||||
});
|
||||
|
||||
DatabaseHelper.DeleteRows(SURVEY_INFO_TABLE, {
|
||||
await DatabaseHelper.DeleteRows(SURVEY_INFO_TABLE, {
|
||||
ID: surveyID
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user