tag/Mask: fix yet another typo, this time in Unset()
Similar to commitse8f2f98048
andff1ff1e54a
Closes https://github.com/MusicPlayerDaemon/MPD/issues/783
This commit is contained in:
parent
cd364023ae
commit
acb29f792f
2
NEWS
2
NEWS
|
@ -1,4 +1,6 @@
|
||||||
ver 0.21.21 (not yet released)
|
ver 0.21.21 (not yet released)
|
||||||
|
* configuration
|
||||||
|
- fix bug in "metadata_to_use" setting
|
||||||
* archive
|
* archive
|
||||||
- iso9660: skip empty file names to work around libcdio bug
|
- iso9660: skip empty file names to work around libcdio bug
|
||||||
* decoder
|
* decoder
|
||||||
|
|
|
@ -89,7 +89,7 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void Unset(TagType tag) {
|
void Unset(TagType tag) {
|
||||||
*this |= ~TagMask(tag);
|
*this &= ~TagMask(tag);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue