fix(frontend): IOS Parser(3)
This commit is contained in:
parent
d6248c1e92
commit
e602b646c2
2 changed files with 2 additions and 2 deletions
|
|
@ -3,7 +3,7 @@ export default class PrimitiveReader {
|
|||
constructor(protected readonly buf: Uint8Array) {}
|
||||
|
||||
hasNext() {
|
||||
return this.buf.length < this.buf.p
|
||||
return this.buf.length < this.p
|
||||
}
|
||||
|
||||
readUint() {
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ import {
|
|||
createListState,
|
||||
createScreenListState,
|
||||
} from './lists';
|
||||
import Parser from './parser';
|
||||
import Parser from './Parser';
|
||||
import PerformanceList from './PerformanceList';
|
||||
|
||||
const HIGHEST_SPEED = 3;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue