mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 18:01:01 +00:00
fix end of stream marker to handle languages like en_GB
when using language like 'en_GB' aspell reports it as 'en' in response to $$l
This commit is contained in:
parent
a91faaf55c
commit
01d5322ef3
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ class ASpellWorker
|
|||
@callback err, []
|
||||
|
||||
output = ""
|
||||
endMarker = new RegExp("^(#{language}|Error)$", "m")
|
||||
endMarker = new RegExp("^[a-z][a-z]", "m")
|
||||
@pipe.stdout.on "data", (chunk) =>
|
||||
output = output + chunk
|
||||
# We receive the language code from Aspell as the end of data marker
|
||||
|
|
Loading…
Reference in a new issue