File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/jsMain/kotlin/dev/teamhub/firebase/firestore Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 8
8
},
9
9
"repository" : {
10
10
"type" : " git" ,
11
- "url" : " git+https://github.com/TeamHubApp/firebase-kotlin-multiplatform- sdk.git"
11
+ "url" : " git+https://github.com/TeamHubApp/firebase-kotlin-sdk.git"
12
12
},
13
13
"keywords" : [
14
14
" kotlin" ,
19
19
"author" : " teamhub.dev" ,
20
20
"license" : " Apache-2.0" ,
21
21
"bugs" : {
22
- "url" : " https://github.com/TeamHubApp/firebase-kotlin-multiplatform- sdk/issues"
22
+ "url" : " https://github.com/TeamHubApp/firebase-kotlin-sdk/issues"
23
23
},
24
- "homepage" : " https://github.com/TeamHubApp/firebase-kotlin-multiplatform- sdk" ,
24
+ "homepage" : " https://github.com/TeamHubApp/firebase-kotlin-sdk" ,
25
25
"dependencies" : {
26
26
"@teamhubapp/firebase-app" : " 0.1.0" ,
27
27
"firebase" : " 6.2.3" ,
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ actual fun FirebaseFirestore.setFirestoreSettings(settings: FirebaseFirestoreSet
64
64
if (settings.enablePersistence) enablePersistence()
65
65
}
66
66
67
- actual class FirebaseFirestoreException (message : String? , code : FirestoreExceptionCode ) : FirebaseException(code.toString(), message)
67
+ actual class FirebaseFirestoreException (message : String? , val code : FirestoreExceptionCode ) : FirebaseException(code.toString(), message)
68
68
69
69
actual val QuerySnapshot .documents: List <DocumentSnapshot >
70
70
get() = rethrow { docs.toList() }
You can’t perform that action at this time.
0 commit comments