Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 955b88b6 authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "[Sb refactor] Default SSID for DemoWifiRepository" into udc-qpr-dev am: 849b724f

parents afc9e566 849b724f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ constructor(
            networkId = DEMO_NET_ID,
            isValidated = validated ?: true,
            level = level ?: 0,
            ssid = ssid,
            ssid = ssid ?: DEMO_NET_SSID,

            // These fields below aren't supported in demo mode, since they aren't needed to satisfy
            // the interface.
@@ -115,5 +115,6 @@ constructor(

    companion object {
        private const val DEMO_NET_ID = 1234
        private const val DEMO_NET_SSID = "Demo SSID"
    }
}