diff --git a/frontend/src/app/quotes/quotes.component.ts b/frontend/src/app/quotes/quotes.component.ts index 38a502e..7acaf82 100644 --- a/frontend/src/app/quotes/quotes.component.ts +++ b/frontend/src/app/quotes/quotes.component.ts @@ -96,7 +96,11 @@ export class QuotesComponent implements OnInit, AfterViewInit { for (const quote of quotes) { let date = new DatePipe('en-US-POSIX').transform(quote.date, 'dd/MM/yyyy'); - lines.push('"' + quote.text + '" [' + quote.game + '] [' + date + ']\r\n'); + if (quote.text.includes('"')) { + lines.push(quote.text + ' [' + quote.game + '] [' + date + ']\r\n'); + } else { + lines.push('"' + quote.text + '" [' + quote.game + '] [' + date + ']\r\n'); + } } let data = new Blob(lines, {