Skip to content

Commit 8b371c5

Browse files
authored
Merge pull request react-native-oh-library#3 from dw18829031738/sig
FIX:md5修复大小写问题
2 parents 7133b80 + 0b10a15 commit 8b371c5

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

harmony/fs/BuildProfile.ets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export default class BuildProfile {
2-
static readonly HAR_VERSION = '2.20.0-0.1.2';
2+
static readonly HAR_VERSION = '2.20.0-0.1.3';
33
static readonly BUILD_MODE_NAME = 'debug';
44
static readonly DEBUG = true;
55
static readonly TARGET_NAME = 'default';

harmony/fs/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@react-native-oh-tpl/react-native-fs",
3-
"version": "2.20.0-0.1.2",
3+
"version": "2.20.0-0.1.3",
44
"description": "Please describe the basic information.",
55
"main": "index.ets",
66
"types": "module",

harmony/fs/src/main/ets/FsTurboModule.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ export class FsTurboModule extends TurboModule {
222222
if (err) {
223223
reject("calculate file hash failed with error message: " + err.message + ", error code: " + err.code);
224224
} else {
225-
resolve(result);
225+
resolve(result.toLocaleUpperCase());
226226
}
227227
})
228228
})

0 commit comments

Comments
 (0)