don't require admins to explicitly enable uploads

pull/1/head
ansuz 2017-07-05 11:54:27 +02:00
parent dfad622b76
commit cb7efeebe1
1 changed files with 2 additions and 2 deletions

4
rpc.js
View File

@ -1088,8 +1088,8 @@ RPC.create = function (config /*:typeof(ConfigType)*/, cb /*:(?Error, ?Function)
return void handleMessage(false);
}
// restrict upload capability unless explicitly disabled
if (config.restrictUploads === false) {
// allow unrestricted uploads unless restrictUploads is true
if (config.restrictUploads !== true) {
return void handleMessage(true);
}