diff --git a/src/robomongo/gui/widgets/workarea/WelcomeTab.cpp b/src/robomongo/gui/widgets/workarea/WelcomeTab.cpp
index 8bca93ae0..2db18f4d2 100644
--- a/src/robomongo/gui/widgets/workarea/WelcomeTab.cpp
+++ b/src/robomongo/gui/widgets/workarea/WelcomeTab.cpp
@@ -122,17 +122,10 @@ namespace Robomongo
     WelcomeTab::WelcomeTab(QScrollArea *parent) :
         QWidget(parent), _parent(parent)
     {
-        // Not using https for Linux due to crashes and unstable behaviors
-#ifdef __linux__
-        _pic1_URL = QString("http://rm-feed.3t.io/") + IMAGE_PATH;
-        _text1_URL = QString("http://rm-feed.3t.io/") + CONTENTS_PATH;
-        _rss_URL = QString("http://blog.robomongo.org/rss/");
-#else
         QString const prefix = AppRegistry::instance().settingsManager()->useHttps() ? "https" : "http";
         _pic1_URL = prefix + QString("://rm-feed.3t.io/") + IMAGE_PATH;
         _text1_URL = prefix + QString("://rm-feed.3t.io/") + CONTENTS_PATH;
         _rss_URL = prefix + QString("://blog.robomongo.org/rss/");
-#endif
 
         /* Temporarily disabling Recent Connections feature
         AppRegistry::instance().bus()->subscribe(this, ConnectionEstablishedEvent::Type);