Skip to content

Commit

Permalink
Fix ess support
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerler committed Aug 24, 2024
1 parent 3a1ba2c commit 18784ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mtkclient/Library/DA/mtk_da_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ def handle_da_cmds(self, mtk, cmd: str, args):
partitions = partitionname.split(",")
self.da_es(partitions=partitions, parttype=parttype, sectors=sectors)
elif cmd == "ess":
sector = args.startsector
sector = getint(args.startsector)
parttype = args.parttype
sectors = getint(args.sectors)
if args.sectors is None:
Expand Down

0 comments on commit 18784ac

Please sign in to comment.