김건우

Chore overall

...@@ -76,7 +76,7 @@ ...@@ -76,7 +76,7 @@
76 <!-- ABOUT THE PROJECT --> 76 <!-- ABOUT THE PROJECT -->
77 ## About The Project 77 ## About The Project
78 78
79 -![Product Name Screen Shot][product-screenshot] 79 +![demo](./images/screenshot.jpg)
80 80
81 ### 핵심기능 81 ### 핵심기능
82 82
...@@ -223,4 +223,3 @@ Distributed under the MIT License. See `LICENSE.txt` for more information. ...@@ -223,4 +223,3 @@ Distributed under the MIT License. See `LICENSE.txt` for more information.
223 <!-- MARKDOWN LINKS & IMAGES --> 223 <!-- MARKDOWN LINKS & IMAGES -->
224 <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links --> 224 <!-- https://www.markdownguide.org/basic-syntax/#reference-style-links -->
225 225
226 -[product-screenshot]: images/screenshot.jpg
...\ No newline at end of file ...\ No newline at end of file
......
...@@ -4,7 +4,7 @@ const {MessageEmbed} = require('discord.js'); ...@@ -4,7 +4,7 @@ const {MessageEmbed} = require('discord.js');
4 const client = new Discord.Client() 4 const client = new Discord.Client()
5 const fs = require('fs'); 5 const fs = require('fs');
6 const internal = require("stream"); 6 const internal = require("stream");
7 -const now = new Date(); 7 +let now = new Date();
8 const moment = require('moment') 8 const moment = require('moment')
9 const Youtube = require('simple-youtube-api'); 9 const Youtube = require('simple-youtube-api');
10 const youtube = new Youtube(youtubeAPI); 10 const youtube = new Youtube(youtubeAPI);
...@@ -38,7 +38,7 @@ client.on("ready", () => { ...@@ -38,7 +38,7 @@ client.on("ready", () => {
38 //명령어 인식 38 //명령어 인식
39 client.on("message", msg => { 39 client.on("message", msg => {
40 console.log(msg.author.id, msg.content); //채팅을 로그에 띄우기 40 console.log(msg.author.id, msg.content); //채팅을 로그에 띄우기
41 - 41 + now = new Date();
42 42
43 //prefix로 시작하지 않는경우 통과 를 위한 명령어 43 //prefix로 시작하지 않는경우 통과 를 위한 명령어
44 if (!msg.content.startsWith(prefix) || msg.author.bot) return; 44 if (!msg.content.startsWith(prefix) || msg.author.bot) return;
...@@ -140,6 +140,8 @@ client.on("message", msg => { ...@@ -140,6 +140,8 @@ client.on("message", msg => {
140 var fileName = "data/stopWatch/" + msg.channel.id + "/" + msg.author.id + ".txt"; 140 var fileName = "data/stopWatch/" + msg.channel.id + "/" + msg.author.id + ".txt";
141 141
142 try { 142 try {
143 + fs.statSync(fileName);
144 +
143 // 파일 있는지 확인. 없으면 catch 145 // 파일 있는지 확인. 없으면 catch
144 146
145 //(공부시작을 한 경우) : 공부시간 계산 147 //(공부시작을 한 경우) : 공부시간 계산
......
File mode changed