Skip to content

Commit 59b77ec

Browse files
committed
More equals
1 parent d697f4a commit 59b77ec

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

firebase-sessions/src/main/kotlin/com/google/firebase/sessions/SessionGenerator.kt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,13 @@ internal data class SessionInfo(
3737
* @hide
3838
*/
3939
internal class SessionGenerator(collectEvents: Boolean) {
40-
private var thisSession: SessionInfo = SessionInfo("", "", collectEvents, -1)
40+
private var thisSession: SessionInfo =
41+
SessionInfo(
42+
sessionId = "",
43+
firstSessionId = "",
44+
collectEvents = collectEvents,
45+
sessionIndex = -1
46+
)
4147

4248
private var firstSessionId = ""
4349
private var sessionIndex: Int = -1

0 commit comments

Comments
 (0)