GoogleChromeLabs / chromeos_network_file_share

*** DEPRECATED *** SMB support is now built into Chrome OS since 71. See README for more info.
GNU General Public License v3.0
57 stars 30 forks source link

Fixed bug that made read only files inaccessible #65

Closed allenktv closed 7 years ago

allenktv commented 7 years ago

Fix for #35

options.mode was always FILE_MODE_WRITE, because there was a typo on when getting the mode from optionsDict

With this, it can now properly parse and pass in the correct permissions for opening the file

illiminable commented 7 years ago

Nice!