Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-client-android
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-android
Commits
0c0aff55
Commit
0c0aff55
authored
6 years ago
by
Adrien Béraud
Browse files
Options
Downloads
Patches
Plain Diff
accountservice: set account list before calling daemon
Change-Id: Id7ccf7c562afbcb1b43241469e820c507ecf9618
parent
6e30019a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ring-android/libringclient/src/main/java/cx/ring/services/AccountService.java
+2
-4
2 additions, 4 deletions
...client/src/main/java/cx/ring/services/AccountService.java
with
2 additions
and
4 deletions
ring-android/libringclient/src/main/java/cx/ring/services/AccountService.java
+
2
−
4
View file @
0c0aff55
...
...
@@ -210,6 +210,7 @@ public class AccountService {
if
(!
newAccounts
.
contains
(
acc
))
acc
.
cleanup
();
mAccountList
=
newAccounts
;
for
(
String
accountId
:
accountIds
)
{
Account
account
=
getAccount
(
accountId
);
Map
<
String
,
String
>
details
=
Ringservice
.
getAccountDetails
(
accountId
).
toNative
();
...
...
@@ -258,7 +259,6 @@ public class AccountService {
}
mHasSipAccount
=
hasSip
;
mHasRingAccount
=
hasJami
;
mAccountList
=
newAccounts
;
if
(!
newAccounts
.
isEmpty
())
{
Account
newAccount
=
newAccounts
.
get
(
0
);
if
(
mCurrentAccount
!=
newAccount
)
{
...
...
@@ -1033,8 +1033,6 @@ public class AccountService {
}
void
knownDevicesChanged
(
String
accountId
,
Map
<
String
,
String
>
devices
)
{
Log
.
d
(
TAG
,
"knownDevicesChanged: "
+
accountId
+
", "
+
devices
);
Account
accountChanged
=
getAccount
(
accountId
);
if
(
accountChanged
!=
null
)
{
accountChanged
.
setDevices
(
devices
);
...
...
@@ -1135,7 +1133,7 @@ public class AccountService {
}
void
registeredNameFound
(
String
accountId
,
int
state
,
String
address
,
String
name
)
{
Log
.
d
(
TAG
,
"registeredNameFound: "
+
accountId
+
", "
+
state
+
", "
+
name
+
", "
+
address
);
//
Log.d(TAG, "registeredNameFound: " + accountId + ", " + state + ", " + name + ", " + address);
Account
account
=
getAccount
(
accountId
);
if
(
account
!=
null
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment