Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
801f6da3
Commit
801f6da3
authored
Mar 24, 2018
by
Leonardo Aramaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a null-check on fetching settings
parent
a9ebf737
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
6 deletions
+4
-6
RocketChatApplication.kt
...ain/java/chat/rocket/android/app/RocketChatApplication.kt
+2
-2
SharedPreferencesSettingsRepository.kt
...er/infraestructure/SharedPreferencesSettingsRepository.kt
+2
-4
No files found.
app/src/main/java/chat/rocket/android/app/RocketChatApplication.kt
View file @
801f6da3
...
@@ -79,13 +79,13 @@ class RocketChatApplication : Application(), HasActivityInjector, HasServiceInje
...
@@ -79,13 +79,13 @@ class RocketChatApplication : Application(), HasActivityInjector, HasServiceInje
setupCrashlytics
()
setupCrashlytics
()
setupFresco
()
setupFresco
()
setupTimber
()
setupTimber
()
startMigrationIfNeeded
()
migrateFromLegacy
()
// TODO - remove this when we have a proper service handling connection...
// TODO - remove this when we have a proper service handling connection...
initCurrentServer
()
initCurrentServer
()
}
}
private
fun
startMigrationIfNeeded
()
{
private
fun
migrateFromLegacy
()
{
Realm
.
init
(
this
)
Realm
.
init
(
this
)
val
serveListConfiguration
=
RealmConfiguration
.
Builder
()
val
serveListConfiguration
=
RealmConfiguration
.
Builder
()
.
name
(
"server.list.realm"
)
.
name
(
"server.list.realm"
)
...
...
app/src/main/java/chat/rocket/android/server/infraestructure/SharedPreferencesSettingsRepository.kt
View file @
801f6da3
...
@@ -15,9 +15,7 @@ class SharedPreferencesSettingsRepository(private val localRepository: LocalRepo
...
@@ -15,9 +15,7 @@ class SharedPreferencesSettingsRepository(private val localRepository: LocalRepo
}
}
override
fun
get
(
url
:
String
):
PublicSettings
{
override
fun
get
(
url
:
String
):
PublicSettings
{
val
settings
=
localRepository
.
get
(
"$SETTINGS_KEY$url"
)
!!
val
settings
=
localRepository
.
get
(
"$SETTINGS_KEY$url"
)
settings
.
let
{
return
if
(
settings
==
null
)
hashMapOf
()
else
adapter
.
fromJson
(
settings
)
?:
hashMapOf
()
return
adapter
.
fromJson
(
it
)
!!
}
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment