diff --git a/CMakeLists.txt b/CMakeLists.txt
index 97635846d..d067d4119 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -71,8 +71,8 @@ project(rssguard)
set(APP_NAME "RSS Guard")
set(APP_LOW_NAME "rssguard")
-set(APP_VERSION "2.0.0.0")
-set(FILE_VERSION "0,0,0,0")
+set(APP_VERSION "2.0.0.1")
+set(FILE_VERSION "2,0,0,1")
set(APP_AUTHOR "Martin Rotter")
set(APP_URL "http://bitbucket.org/skunkos/rssguard")
set(APP_URL_ISSUES "http://bitbucket.org/skunkos/rssguard/issues")
diff --git a/resources/text/CHANGELOG b/resources/text/CHANGELOG
index 376a23d1e..c87286aaa 100644
--- a/resources/text/CHANGELOG
+++ b/resources/text/CHANGELOG
@@ -1,4 +1,21 @@
+2.0.0.1
+
+Fixed:
+
+
+Added:
+
+
+Changed:
+
+
+
+
2.0.0.0
Fixed:
diff --git a/src/core/feedsmodelrootitem.cpp b/src/core/feedsmodelrootitem.cpp
index a41ee819c..6189e2922 100755
--- a/src/core/feedsmodelrootitem.cpp
+++ b/src/core/feedsmodelrootitem.cpp
@@ -83,8 +83,8 @@ bool FeedsModelRootItem::removeChild(FeedsModelRootItem *child) {
FeedsModelRootItem *FeedsModelRootItem::child(FeedsModelRootItem::Kind kind_of_child, const QString &identifier) {
foreach (FeedsModelRootItem *child, childItems()) {
if (child->kind() == kind_of_child) {
- if (kind_of_child == Category && static_cast(child)->title() == identifier ||
- kind_of_child == Feed && static_cast(child)->url() == identifier) {
+ if ((kind_of_child == Category && static_cast(child)->title() == identifier) ||
+ (kind_of_child == Feed && static_cast(child)->url() == identifier)) {
return child;
}
}