Fix broken states
This commit is contained in:
parent
795d19ee01
commit
1f3aaf47d1
|
@ -445,7 +445,8 @@ class ExtendedStore extends Store implements ExtendedStoreAPI {
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<Map<String, dynamic>>> getStatesFromRoomId(String id) async {
|
Future<List<Map<String, dynamic>>> getStatesFromRoomId(String id) async {
|
||||||
return _db.rawQuery("SELECT * FROM RoomStates WHERE room_id=?", [id]);
|
return _db.rawQuery(
|
||||||
|
"SELECT * FROM RoomStates WHERE room_id=? AND type IS NOT NULL", [id]);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<List<Map<String, dynamic>>> getAccountDataFromRoomId(String id) async {
|
Future<List<Map<String, dynamic>>> getAccountDataFromRoomId(String id) async {
|
||||||
|
|
|
@ -11,7 +11,7 @@ description: Chat with your friends.
|
||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.7.3+23
|
version: 0.7.4+24
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.6.0 <3.0.0"
|
sdk: ">=2.6.0 <3.0.0"
|
||||||
|
|
Loading…
Reference in a new issue