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

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

View File

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