dms storage hash path changed to length 3
gitea/salix/dev This commit looks good Details

This commit is contained in:
Joan Sanchez 2019-06-20 11:25:04 +02:00
parent 7b610d62b6
commit d0e2b6f90a
1 changed files with 1 additions and 1 deletions

View File

@ -13,6 +13,6 @@ module.exports = app => {
}; };
storageConnector.getPathHash = function(id) { storageConnector.getPathHash = function(id) {
return md5(id).substring(0, 2); return md5(id).substring(0, 3);
}; };
}; };