Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
Merge pull request #91 from TrueXPixels/glitch
Browse files Browse the repository at this point in the history
Hotfix: Removed some logging
  • Loading branch information
lorencerri authored Apr 6, 2018
2 parents 634f8ca + b423c72 commit 22c0f38
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 3 deletions.
Binary file modified json.sqlite
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"version": "6.1.0"
"version": "6.1.1"
}
7 changes: 6 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,9 @@ economy.set(`userBalance_258622912095846400`, 2000);
guilds.set(`guildName_343572980351107077`, 'Plexi Development');
guilds.set(`guildName_316720611453829121`, 'Nitro');
guilds.set(`guildName_417723229721853963`, 'Guilds List');
guilds.set(`guildName_425820587252908037`, 'Another Test Server');
guilds.set(`guildName_425820587252908037`, 'Another Test Server');

db.set(`generalInfo`, { name: 'TrueXPixels', discrim: '#0001' });
db.set(`restartCount`, 25);
db.set(`cmdCount`, 5);
db.set(`authorID`, '144645791145918464');
1 change: 0 additions & 1 deletion src/webviewer/createWebview.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@ module.exports = function(password, port, suburl) {
}, db).then(i => {
tables(db).then(o => {
i.unshift(o);
console.log(i)
socket.emit('recievedData', i);
db.close();
});
Expand Down
6 changes: 6 additions & 0 deletions src/webviewer/css/data.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,10 @@ li a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}

tr a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}
6 changes: 6 additions & 0 deletions src/webviewer/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,10 @@ li a {
li a:hover {
font-size: 30px;
background: #f6f6f6;
}

tr a:hover {
font-size: 30px;
background: #f6f6f6;
cursor: pointer;
}

0 comments on commit 22c0f38

Please sign in to comment.