Skip to content

Commit

Permalink
fix(thrift): fix write bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
piloking committed Jan 24, 2025
1 parent b4b873c commit 67f94ae
Show file tree
Hide file tree
Showing 7 changed files with 54,777 additions and 58,773 deletions.
1 change: 0 additions & 1 deletion packages/linejs/base/core/utils/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,5 @@ export type ClientEvents = {
"update:cert": (cert: string) => void;
"update:qrcert": (qrCert: string) => void;
log: (data: Log) => void;
"square:event": (event: LINETypes.SquareEvent) => void;
// TODO: Add more as square
};
4 changes: 3 additions & 1 deletion packages/linejs/base/obs/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ export class LineObs {
oType: type,
obsPath: toType + "/m/" + oid || "reqseq",
filename: param.name,
params: param,
});
}

Expand Down Expand Up @@ -338,7 +339,8 @@ export class LineObs {
.uploadObjectForService({
data: edata,
oType: "file",
obsPath: `${serviceName}/${obsNamespace}/${tempId}__ud-preview`,
obsPath:
`${serviceName}/${obsNamespace}/${tempId}__ud-preview`,
params,
});
if (objId !== objId2) {
Expand Down
Loading

0 comments on commit 67f94ae

Please sign in to comment.