mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-10-27 09:16:13 +08:00
fixed quote length all not working
This commit is contained in:
parent
258fd433b5
commit
0b7ad942a4
1 changed files with 1 additions and 1 deletions
|
|
@ -891,7 +891,7 @@ export async function init(): Promise<void> {
|
|||
}
|
||||
|
||||
let rq: MonkeyTypes.Quote | undefined = undefined;
|
||||
if (!Config.quoteLength.includes(-2) && Config.quoteLength.length === 1) {
|
||||
if (!Config.quoteLength.includes(-2) && Config.quoteLength.length !== 1) {
|
||||
const quoteLengths = Config.quoteLength;
|
||||
let groupIndex;
|
||||
if (quoteLengths.length > 1) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue