mirror of
https://github.com/PretendoNetwork/BOSS.git
synced 2026-08-22 09:04:09 -05:00
fix: update cli create command to use bigint title ID
This commit is contained in:
@@ -62,7 +62,7 @@ const createCmd = new Command('create')
|
||||
const { task } = await ctx.grpc.registerTask({
|
||||
bossAppId: appId,
|
||||
id: opts.id,
|
||||
titleId: opts.titleId,
|
||||
titleId: BigInt(parseInt(opts.titleId, 16)),
|
||||
description: opts.desc ?? '',
|
||||
country: 'This value isnt used'
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user