Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Commit

Permalink
fixed repo in code (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
alsd4git committed Mar 8, 2024
1 parent 3b82da4 commit 5cdf63e
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Steps to reproduce the behavior:
**Screenshots**
If applicable, add screenshots to help explain your problem.

**rvx-builder Version:** [e.g. v3.11.1]
**rvx-builder Version:** [e.g. v3.11.3]

**Desktop (please complete the following information):**

Expand Down
3 changes: 2 additions & 1 deletion utils/FileDownloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ async function getDownloadLink(json) {

if (!releasesPage.ok)
throw new Error(
'You got ratelimited from GitHub\n...Completely? What did you even do?'
'You got ratelimited from GitHub\n...Completely? XX What did you even do?' +
'repo: '+`https://github.com/${json.owner}/${json.repo}/releases/latest`
);

const releasePage = await releasesPage.text();
Expand Down
6 changes: 3 additions & 3 deletions utils/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ const { existsSync, readFileSync, writeFileSync } = require('node:fs');

const defaultSettings = {
sources: {
cli: 'YT-Advanced/revanced-cli',
patches: 'YT-Advanced/revanced-patches',
integrations: 'YT-Advanced/revanced-integrations'
cli: 'inotia00/revanced-cli',
patches: 'YT-Advanced/ReX-patches',
integrations: 'YT-Advanced/ReX-integrations'
},
patches: []
};
Expand Down
2 changes: 1 addition & 1 deletion wsEvents/checkForUpdates.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { getDownloadLink } = require('../utils/FileDownloader.js');

const currentVersion = 'v3.11.2';
const currentVersion = 'v3.11.3';

/**
* @param {import('ws').WebSocket} ws
Expand Down
2 changes: 1 addition & 1 deletion wsEvents/installReVanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = async function installReVanced(ws) {
'com.google.android.apps.youtube.music')
) {
const currentMicroGVersion = (
await getDownloadLink({ owner: 'YT-Advanced', repo: 'VancedMicroG' })
await getDownloadLink({ owner: 'inotia00', repo: 'VancedMicroG' })
).version
.replace('v', '')
.split('-')[0];
Expand Down
2 changes: 1 addition & 1 deletion wsEvents/updateFiles.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ module.exports = async function updateFiles(ws) {
repo: integrations[1]
},
{
owner: 'YT-Advanced',
owner: 'inotia00',
repo: 'VancedMicroG'
}
];
Expand Down

0 comments on commit 5cdf63e

Please sign in to comment.