Skip to content

Commit

Permalink
[cdp] fix Devtools Response model wrong parameter names (#7468)
Browse files Browse the repository at this point in the history
  • Loading branch information
takeyaqa authored and shs96c committed Sep 10, 2019
1 parent 9db0c6b commit 53f7bf3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -449,10 +449,10 @@ private static Response fromJson(JsonInput input) {
remotePort = input.read(Integer.class);
break;
case "fromDiskCache":
fromServiceWorker = input.nextBoolean();
fromDiskCache = input.nextBoolean();
break;
case "fromServiceWorker":
fromDiskCache = input.nextBoolean();
fromServiceWorker = input.nextBoolean();
break;
case "encodedDataLength":
encodedDataLength = input.read(Double.class);
Expand Down

0 comments on commit 53f7bf3

Please sign in to comment.