Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit b2638843 authored by Simon Chan's avatar Simon Chan
Browse files

chore: fix typo

parent 94ae82ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ jobs:

    strategy:
      matrix:
        node-version: [16.x, 18.x]
        node-version: [18.x]

    steps:
      - name: Checkout
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ jobs:

    strategy:
      matrix:
        node-version: [18.x, 20.x]
        node-version: [18.x]

    steps:
      - name: Checkout
+1 −0
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
        "CNXN",
        "colour",
        "comlink",
        "concat",
        "Demuxer",
        "Deserialization",
        "DESERIALIZERS",
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ export class AdbReverseNotSupportedError extends AdbReverseError {
}

const AdbReverseErrorResponse = new Struct()
    .fields(AdbReverseStringResponse)
    .concat(AdbReverseStringResponse)
    .postDeserialize((value) => {
        // https://issuetracker.google.com/issues/37066218
        // ADB on Android <9 can't create reverse tunnels when connected wirelessly (ADB over WiFi),
+2 −2
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ export interface AdbSyncEntry extends AdbSyncStat {
}

export const AdbSyncEntryResponse = new Struct({ littleEndian: true })
    .fields(AdbSyncLstatResponse)
    .concat(AdbSyncLstatResponse)
    .uint32("nameLength")
    .string("name", { lengthField: "nameLength" })
    .extra({ id: AdbSyncResponseId.Entry as const });
@@ -20,7 +20,7 @@ export type AdbSyncEntryResponse =
    (typeof AdbSyncEntryResponse)["TDeserializeResult"];

export const AdbSyncEntry2Response = new Struct({ littleEndian: true })
    .fields(AdbSyncStatResponse)
    .concat(AdbSyncStatResponse)
    .uint32("nameLength")
    .string("name", { lengthField: "nameLength" })
    .extra({ id: AdbSyncResponseId.Entry2 as const });
Loading