Skip to content

Commit 7419c40

Browse files
committed
WelcomeTab: Enabling using of HTTPS for RSS download for Linux
1 parent be89b5c commit 7419c40

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

src/robomongo/gui/widgets/workarea/WelcomeTab.cpp

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -122,17 +122,10 @@ namespace Robomongo
122122
WelcomeTab::WelcomeTab(QScrollArea *parent) :
123123
QWidget(parent), _parent(parent)
124124
{
125-
// Not using https for Linux due to crashes and unstable behaviors
126-
#ifdef __linux__
127-
_pic1_URL = QString("http://rm-feed.3t.io/") + IMAGE_PATH;
128-
_text1_URL = QString("http://rm-feed.3t.io/") + CONTENTS_PATH;
129-
_rss_URL = QString("http://blog.robomongo.org/rss/");
130-
#else
131125
QString const prefix = AppRegistry::instance().settingsManager()->useHttps() ? "https" : "http";
132126
_pic1_URL = prefix + QString("://rm-feed.3t.io/") + IMAGE_PATH;
133127
_text1_URL = prefix + QString("://rm-feed.3t.io/") + CONTENTS_PATH;
134128
_rss_URL = prefix + QString("://blog.robomongo.org/rss/");
135-
#endif
136129

137130
/* Temporarily disabling Recent Connections feature
138131
AppRegistry::instance().bus()->subscribe(this, ConnectionEstablishedEvent::Type);

0 commit comments

Comments
 (0)