mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-14 02:01:56 +00:00
fix wheelchair chair_none problem
This commit is contained in:
parent
32ea4876fd
commit
4931517b33
1 changed files with 2 additions and 2 deletions
|
|
@ -190,10 +190,10 @@ public class Preferences extends BaseModel {
|
|||
}
|
||||
|
||||
public String getChair() {
|
||||
if (chair != null) {
|
||||
if (chair != null && !chair.equals("none")) {
|
||||
return "chair_"+chair;
|
||||
}
|
||||
return chair;
|
||||
return null;
|
||||
}
|
||||
|
||||
public void setChair(String chair) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue