diff --git a/ui/constants/report_content.js b/ui/constants/report_content.js index 3c665001d..e2c37ad33 100644 --- a/ui/constants/report_content.js +++ b/ui/constants/report_content.js @@ -1,5 +1,5 @@ // Sample query: -// https://reports.lbry.com/common/new?primary_email=e4drcf@gmail.com +// https://reports.odysee.tv/common/new?primary_email=e4drcf@gmail.com // &channel_name=e4drcf // &channel_claim_id=43a7e08b0d83cfb8bc31e59bc48334a90ccfd8cb // &type=Sexual%20content diff --git a/ui/redux/actions/reportContent.js b/ui/redux/actions/reportContent.js index f91f19dc1..be208de8f 100644 --- a/ui/redux/actions/reportContent.js +++ b/ui/redux/actions/reportContent.js @@ -12,13 +12,13 @@ export const doReportContent = (category: string, params: string) => (dispatch: let REPORT_URL; switch (category) { case COPYRIGHT_ISSUES: - REPORT_URL = 'https://reports.lbry.com/copyright_issue/new'; + REPORT_URL = 'https://reports.odysee.tv/copyright_issue/new'; break; case OTHER_LEGAL_ISSUES: - REPORT_URL = 'https://reports.lbry.com/other_legal_issue/new'; + REPORT_URL = 'https://reports.odysee.tv/other_legal_issue/new'; break; default: - REPORT_URL = 'https://reports.lbry.com/common/new'; + REPORT_URL = 'https://reports.odysee.tv/common/new'; break; }