mirror of
https://github.com/ION606/selmer-bot-website.git
synced 2026-05-14 22:16:54 +00:00
Fixed a few typos
This commit is contained in:
+2
-2
@@ -248,7 +248,7 @@
|
|||||||
|
|
||||||
//Load the channels serverSettings.Id
|
//Load the channels serverSettings.Id
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open('get', 'http://localhost:53134/getChannels/', true);
|
xhr.open('get', 'https://selmer-bot-website.herokuapp.com/getChannels/', true);
|
||||||
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
||||||
xhr.setRequestHeader('serverNumber', serverSettings.Id);
|
xhr.setRequestHeader('serverNumber', serverSettings.Id);
|
||||||
xhr.onloadend = (e) => {
|
xhr.onloadend = (e) => {
|
||||||
@@ -373,7 +373,7 @@
|
|||||||
|
|
||||||
//Send the data to the server
|
//Send the data to the server
|
||||||
var xhr = new XMLHttpRequest();
|
var xhr = new XMLHttpRequest();
|
||||||
xhr.open('post', 'http://localhost:53134/sendData/', true);
|
xhr.open('post', 'https://selmer-bot-website.herokuapp.com/sendData/', true);
|
||||||
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');
|
||||||
xhr.setRequestHeader('serverSettings', JSON.stringify(serverSettings));
|
xhr.setRequestHeader('serverSettings', JSON.stringify(serverSettings));
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user