Browse Source

fix a recently added md5 api field

pull/40/head
czaks 10 years ago
parent
commit
ef53af04ec
  1. 2
      inc/api.php

2
inc/api.php

@ -113,7 +113,7 @@ class Api {
$apiPost['ext'] = substr($file->file, $dotPos);
$dotPos = strrpos($file->file, '.');
$apiPost['tim'] = substr($file->file, 0, $dotPos);
$apiPost['md5'] = base64_encode(md5_file($file->file_path, true));
$apiPost['md5'] = base64_encode(hex2bin($post->filehash));
}
return $apiPost;

Loading…
Cancel
Save