Fix bug where HTTP being disabled would cause stickiness

This commit is contained in:
Lucien Greathouse
2019-01-10 16:12:52 -08:00
parent 5bb70c2675
commit 5f91a8fdfe
5 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,3 @@
local Selection = game:GetService("Selection")
local HttpService = game:GetService("HttpService")
local Logging = require(script.Parent.Logging)
local HttpError = {}
@@ -70,10 +67,6 @@ end
function HttpError:report()
Logging.warn(self.message)
if self.type == HttpError.Error.HttpNotEnabled then
Selection:Set(HttpService)
end
end
return HttpError
return HttpError