commit ca24c95cc5b4e53455058e180f01d5a5febccac6
Author: Lucas Schnorr <schnorr@inf.ufrgs.br>
Date:   Wed Oct 19 12:55:19 2022 -0300

    fix legacy parsing when empty fields are double-quotes""

diff --git a/src/libpaje/PajeEventDecoder.cc b/src/libpaje/PajeEventDecoder.cc
index 98602b3..a8224e4 100644
--- a/src/libpaje/PajeEventDecoder.cc
+++ b/src/libpaje/PajeEventDecoder.cc
@@ -76,13 +76,16 @@ char *PajeEventDecoder::break_line (char *s, paje_line *line)
     }
     if (!in_word && !isspace(*p)) {
       if (*p == '"') {
-        p++;
         in_string = true;
       } else {
         in_word = true;
       }
       if (line->word_count < PAJE_MAX_FIELDS) {
-        line->word[line->word_count] = p;
+        if(in_string){
+          line->word[line->word_count] = p+1; //ignore "
+        }else{
+          line->word[line->word_count] = p;
+        }
         line->word_count ++;
       }
       continue;
