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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-client-android
Commits
9e0015da
Commit
9e0015da
authored
12 years ago
by
Alexandre Savard
Browse files
Options
Downloads
Patches
Plain Diff
#16114: Fix account list update when opening the account creation window several time
parent
f7f9e0bd
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/com/savoirfairelinux/sflphone/client/AccountManagementFragment.java
+4
-1
4 additions, 1 deletion
...fairelinux/sflphone/client/AccountManagementFragment.java
with
4 additions
and
1 deletion
src/com/savoirfairelinux/sflphone/client/AccountManagementFragment.java
+
4
−
1
View file @
9e0015da
...
@@ -98,7 +98,10 @@ public class AccountManagementFragment extends PreferenceFragment
...
@@ -98,7 +98,10 @@ public class AccountManagementFragment extends PreferenceFragment
try
{
try
{
for
(
String
s
:
accountList
)
{
for
(
String
s
:
accountList
)
{
Log
.
i
(
TAG
,
" set details for "
+
s
);
Log
.
i
(
TAG
,
" set details for "
+
s
);
service
.
setAccountDetails
(
s
,
mAccountList
.
get
(
s
));
HashMap
<
String
,
String
>
accountDetails
=
mAccountList
.
get
(
s
);
if
(
accountDetails
!=
null
)
{
service
.
setAccountDetails
(
s
,
accountDetails
);
}
}
}
}
catch
(
RemoteException
e
)
{
}
catch
(
RemoteException
e
)
{
Log
.
e
(
TAG
,
"Cannot call service method"
,
e
);
Log
.
e
(
TAG
,
"Cannot call service method"
,
e
);
...
...
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