Fix ambiguous test in AccountInformation.set_special_folder
This commit is contained in:
parent
e1fd9daa83
commit
1ed0f5acbf
1 changed files with 3 additions and 2 deletions
|
|
@ -437,8 +437,9 @@ public class Geary.AccountInformation : BaseObject {
|
|||
break;
|
||||
}
|
||||
|
||||
if (old_path == null && new_path != null ||
|
||||
old_path != null && !old_path.equal_to(new_path)) {
|
||||
if ((old_path == null && new_path != null) ||
|
||||
(old_path != null && new_path == null) ||
|
||||
(old_path != null && !old_path.equal_to(new_path))) {
|
||||
changed();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue