Skip to content

Commit 154088b

Browse files
committed
frontend: Fix contributing link in About
Fixes the link to the new contributing document, which is now .md and not .rst
1 parent 90dda7e commit 154088b

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

frontend/dialogs/OBSAbout.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ OBSAbout::OBSAbout(QWidget *parent) : QDialog(parent), ui(new Ui::OBSAbout)
4141
ui->donate->setOpenExternalLinks(true);
4242
}
4343

44-
ui->getInvolved->setText(
45-
"&nbsp;&nbsp;<a href='https://github.com/obsproject/obs-studio/blob/master/CONTRIBUTING.rst'>" +
46-
QTStr("About.GetInvolved") + "</a>");
44+
ui->getInvolved->setText("&nbsp;&nbsp;<a href='https://obsproject.com/developer-contributing'>" +
45+
QTStr("About.GetInvolved") + "</a>");
4746
ui->getInvolved->setTextInteractionFlags(Qt::TextBrowserInteraction);
4847
ui->getInvolved->setOpenExternalLinks(true);
4948

0 commit comments

Comments
 (0)