Skip to content

Commit 95d1b3f

Browse files
committed
Minor refactoring
1 parent 67cd8a2 commit 95d1b3f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ namespace Robomongo
123123
{
124124
// Not using https for Linux due to crashes and unstable behaviors
125125
#ifdef __linux__
126-
_pic1_URL = QString("http://rm-feed.3t.io/" + IMAGE_PATH);
127-
_text1_URL = QString("http://rm-feed.3t.io/" + CONTENTS_PATH;
126+
_pic1_URL = QString("http://rm-feed.3t.io/") + IMAGE_PATH;
127+
_text1_URL = QString("http://rm-feed.3t.io/") + CONTENTS_PATH;
128128
_rss_URL = QString("http://blog.robomongo.org/rss/");
129129
#else
130130
QString const prefix = AppRegistry::instance().settingsManager()->useHttps() ? "https" : "http";
131-
_pic1_URL = prefix + QString("://rm-feed.3t.io/" + IMAGE_PATH);
132-
_text1_URL = prefix + QString("://rm-feed.3t.io/" + CONTENTS_PATH);
131+
_pic1_URL = prefix + QString("://rm-feed.3t.io/") + IMAGE_PATH;
132+
_text1_URL = prefix + QString("://rm-feed.3t.io/") + CONTENTS_PATH;
133133
_rss_URL = prefix + QString("://blog.robomongo.org/rss/");
134134
#endif
135135

0 commit comments

Comments
 (0)