Fix a cast issue

This commit is contained in:
stom79 2018-08-15 15:10:33 +02:00
parent 0281fd7702
commit c45c0c4e86
1 changed files with 1 additions and 1 deletions

View File

@ -923,7 +923,7 @@ public class ShowAccountActivity extends BaseActivity implements OnPostActionInt
while (it.hasNext()) {
Map.Entry pair = (Map.Entry)it.next();
String label = (String)pair.getKey();
String value = (String)pair.getValue();
SpannableString value = (SpannableString)pair.getValue();
LinearLayout field;
TextView labelView;
TextView valueView;