Skip to content

Commit

Permalink
Merge pull request #12 from habyaad/dev
Browse files Browse the repository at this point in the history
fix
  • Loading branch information
habyaad authored Jun 24, 2024
2 parents 87302c5 + 882622b commit 1b9b542
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/flutter-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v2.0.3 #${{ steps.next_version.outputs.next_version }}
release_name: Release v2.0.3 #${{ steps.next_version.outputs.next_version }}
tag_name: v2.0.4 #${{ steps.next_version.outputs.next_version }}
release_name: Release v2.0.4 #${{ steps.next_version.outputs.next_version }}
draft: false
prerelease: false

Expand Down
3 changes: 2 additions & 1 deletion lib/services/message_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,8 @@ class MessageService {
.doc(getConversationID(receiverUid))
.set({
"read": true,
}).onError((e, _) => log("Error writing document: $e"));
}, SetOptions(merge: true)).onError(
(e, _) => log("Error writing document: $e"));
}
}
}

0 comments on commit 1b9b542

Please sign in to comment.