From 6336037d3e4cd2735bc1be99f41f2528a3acee59 Mon Sep 17 00:00:00 2001 From: Tom <111147401+1OSaft@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:49:06 +0100 Subject: [PATCH] Update updater.lua Fixed Updater --- server/updater.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/updater.lua b/server/updater.lua index 18428f6..67a741e 100644 --- a/server/updater.lua +++ b/server/updater.lua @@ -13,7 +13,7 @@ if Config.checkForUpdates then CreateThread(function() while true do - PerformHttpRequest("https://api.github.com/repos/wasabirobby/wasabi_backpack/releases/latest", CheckVersion, "GET") + PerformHttpRequest("https://api.github.com/repos/1OSaft/wasabi_backpack/releases/latest", CheckVersion, "GET") Wait(3600000) end end) @@ -38,7 +38,7 @@ if Config.checkForUpdates then GetRepoInformations = function() local repoVersion, repoURL, repoBody = nil, nil, nil - PerformHttpRequest("https://api.github.com/repos/wasabirobby/wasabi_backpack/releases/latest", function(err, response, headers) + PerformHttpRequest("https://api.github.com/repos/1OSaft/wasabi_backpack/releases/latest", function(err, response, headers) if err == 200 then local data = json.decode(response) @@ -47,7 +47,7 @@ if Config.checkForUpdates then repoBody = data.body else repoVersion = curVersion - repoURL = "https://github.com/wasabirobby/wasabi_backpack" + repoURL = "https://github.com/1OSaft/wasabi_backpack" end end, "GET")