ruby-docx / docx

a ruby library/gem for interacting with .docx files
MIT License
431 stars 170 forks source link

File Not Supported Error fix #135

Closed manovasanth1227 closed 1 year ago

manovasanth1227 commented 1 year ago

Hi, here I have handled the exception when an unsupported file is opened. For Example: Before fix: Docx::Document.open('PassPortCrop.jpeg') --> # After fix: Docx::Document.open('PassPortCrop.jpeg') --> Invalid file format

satoryu commented 1 year ago

Thank you, @manovasanth1227 !