fix getAttachment, return default value (#10008)

This commit is contained in:
ken.lj 2022-05-07 14:39:41 +08:00 committed by GitHub
parent a2f1650526
commit 81bad75b7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ public class RpcInvocation implements Invocation, Serializable {
return strValue;
}
}
return null;
return defaultValue;
}
@Deprecated