This commit is contained in:
2023-08-08 17:15:43 +08:00
parent 697631c8d3
commit ac250ea779
13 changed files with 303 additions and 61 deletions

View File

@@ -316,7 +316,7 @@ public class EventApiController : BaseController
};
AddPhotoItem(p);
await WriteToFile(@event.FlowerId, file, token);
await WriteToFile(@event.FlowerId, file, token: token);
}
});
}
@@ -443,7 +443,7 @@ public class EventApiController : BaseController
};
AddPhotoItem(cover);
await WriteToFile(update.FlowerId, file, token);
await WriteToFile(update.FlowerId, file, token: token);
}
});
}
@@ -541,7 +541,7 @@ public class EventApiController : BaseController
};
AddPhotoItem(p);
await WriteToFile(record.FlowerId, file, token);
await WriteToFile(record.FlowerId, file, token: token);
});
}
catch (Exception ex)
@@ -639,7 +639,7 @@ public class EventApiController : BaseController
};
AddPhotoItem(p);
await WriteToFile(record.FlowerId, file, token);
await WriteToFile(record.FlowerId, file, token: token);
}
}
});