stevenschmatz / export-google-form

:arrow_down_small: A small Google Apps Script file to export a form into a JSON file.
MIT License
106 stars 43 forks source link

"This question type does not support the given operation" #1

Closed dureyingenieria closed 7 years ago

dureyingenieria commented 7 years ago

Every time I try to run the script, I get this error message: Sorry, this question type does not support the given operation. (line 69, file "Code")

I am testing with a very simple form document, a single short answer question.

Thanks for your time.

dureyingenieria commented 7 years ago

I've solved it adding these lines (I don't have permissions to make a Pull Request):

Line 69:

    // Skip feedback-related keys
    if ("getFeedbackForIncorrect".equals(getKey) || "getFeedbackForCorrect".equals(getKey)
      || "getGeneralFeedback".equals(getKey)) {return};
stevenschmatz commented 7 years ago

Thank you so much for the proposed change! Nice catch. I added that line, thanks again 👍