Skip to content

Commit 2ba15c0

Browse files
committed
changelog
1 parent 42da0bd commit 2ba15c0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

FirebaseMessaging/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Unreleased
2+
- [fixed] Fix missing database crash on launch. (#14880)
3+
14
# 12.1.0
25
- [fixed] Fix Xcode 26 crash from missing `NSUserActivityTypeBrowsingWeb`
36
symbol. Note that this fix isn't in the 12.1.0 zip and Carthage

FirebaseMessaging/Sources/FIRMessagingRmqManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ - (void)openDatabase {
518518
#ifdef SQLITE_OPEN_FILEPROTECTION_NONE
519519
flags |= SQLITE_OPEN_FILEPROTECTION_NONE;
520520
#endif
521-
int result = sqlite3_open_v2([path UTF8String], &self -> _database, flags, NULL);
521+
int result = sqlite3_open_v2([path UTF8String], &self->_database, flags, NULL);
522522
if (result != SQLITE_OK) {
523523
NSString *errorString = FIRMessagingStringFromSQLiteResult(result);
524524
NSString *errorMessage =

0 commit comments

Comments
 (0)