Skip to content

Commit

Permalink
Merge pull request #405 from cryindevil/main
Browse files Browse the repository at this point in the history
Fix: #401
  • Loading branch information
w568w authored Aug 9, 2024
2 parents 4913a7f + 2498c26 commit be8d375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/repository/forum/forum_repository.dart
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ class ForumRepository extends BaseRepositoryWithDio {
}

Future<void> modifyMessage(OTMessage message) async {
await dio.put("$_BASE_URL/messages/${message.message_id}",
await dio.delete("$_BASE_URL/messages/${message.message_id}",
data: {
"has_read": message.has_read,
},
Expand Down

0 comments on commit be8d375

Please sign in to comment.