Skip to content

Commit

Permalink
missing continue
Browse files Browse the repository at this point in the history
  • Loading branch information
FallBackITA27 committed Apr 12, 2024
1 parent cb1eb09 commit c51915e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mkwpp-parser/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,10 @@ function handleTime(data, date) {
let time = 0;
let comment = "";
for (let token of data) {
if (token.includes("youtu") || token.includes("twitch")) comment = token;
if (token.includes("youtu") || token.includes("twitch")) {
comment = token;
continue;
}
let total = 0;
if ((token.includes(":")) || (token.includes(".")) || (token.includes("\"")) || (token.includes("'"))) {
if (token.includes(":")) {
Expand Down

0 comments on commit c51915e

Please sign in to comment.