removed some logs and

This commit is contained in:
supertiger1234 2019-06-03 13:38:23 +01:00
parent f66f3e9cb9
commit 9ce520c8a9
3 changed files with 2 additions and 6 deletions

View file

@ -28,7 +28,7 @@
<!-- FB Open Graph data -->
<meta property="og:title" content="Nertivia - Chat Client">
<meta property="og:type" content="website">
<meta property="og:image" content="https://nertivia.supertiger.tk/img/logo.3287e62d.png">
<meta property="og:image" content="https://nertivia.supertiger.tk/img/logo.b5afe32f.png">
<meta property="og:description" content="The best chat client that wont restrict you from important and fun features.">
<meta property="og:url" content="https://nertivia.tk/">
@ -36,7 +36,7 @@
<meta name="twitter:card" content="app">
<meta name="twitter:title" content="Nertivia - Chat Client">
<meta name="twitter:description" content="The best chat client that wont restrict you from important and fun features.">
<meta name="twitter:image" content="https://nertivia.supertiger.tk/img/logo.3287e62d.png">
<meta name="twitter:image" content="https://nertivia.supertiger.tk/img/logo.b5afe32f.png">
<meta name="twitter:url" content="https://nertivia.tk/">
<!-- Preview meta tags -->

View file

@ -72,7 +72,6 @@ export default {
async leaveServer(serverID) {
this.showContextMenu = false;
const {ok, error, result} = await ServerService.leaveServer(serverID);
console.log({ok, error, result})
}
},
mounted() {

View file

@ -90,7 +90,6 @@ const actions = {
if (context.getters.channels[data.message.channelID]){
context.dispatch('updateChannelLastMessage', data.message.channelID);
}
console.log(data)
if (context.getters.messages[data.message.channelID]) {
context.dispatch('addMessage', {
message: data.message,
@ -166,8 +165,6 @@ const actions = {
});
}
console.log(server.channels)
},
['socket_server:leave'](context, {server_id}) {
context.dispatch('servers/removeServer', server_id)