{"record":{"id":"64a9fa5c28d082bb","repo":"phacility/phabricator","slug":"there-are-no-file-data-chunks-in-byte-range-d","errorCode":null,"errorMessage":"There are no file data chunks in byte range %d - %d.","messagePattern":"There are no file data chunks in byte range (.+?) - (.+?)\\.","errorType":"exception","errorClass":"Exception","httpStatus":null,"severity":"error","filePath":"src/applications/files/conduit/FileConduitAPIMethod.php","lineNumber":42,"sourceCode":"    return $this->newChunkQuery($viewer, $file)\n      ->execute();\n  }\n\n  protected function loadFileChunkForUpload(\n    PhabricatorUser $viewer,\n    PhabricatorFile $file,\n    $start,\n    $end) {\n\n    $start = (int)$start;\n    $end = (int)$end;\n\n    $chunks = $this->newChunkQuery($viewer, $file)\n      ->withByteRange($start, $end)\n      ->execute();\n\n    if (!$chunks) {\n      throw new Exception(\n        pht(\n          'There are no file data chunks in byte range %d - %d.',\n          $start,\n          $end));\n    }\n\n    if (count($chunks) !== 1) {\n      phlog($chunks);\n      throw new Exception(\n        pht(\n          'There are multiple chunks in byte range %d - %d.',\n          $start,\n          $end));\n    }\n\n    $chunk = head($chunks);\n    if ($chunk->getByteStart() != $start) {\n      throw new Exception(","sourceCodeStart":24,"sourceCodeEnd":60,"githubUrl":"https://github.com/phacility/phabricator/blob/5720a38cfe95b00ca4be5016dd0d2f3195f4fa04/src/applications/files/conduit/FileConduitAPIMethod.php#L24-L60","documentation":"Error \"There are no file data chunks in byte range %d - %d.\" thrown in phacility/phabricator.","triggerScenarios":"Thrown at src/applications/files/conduit/FileConduitAPIMethod.php:42 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"5720a38cfe95b00ca4be5016dd0d2f3195f4fa04","analyzedAt":"2026-08-21T05:07:25.672Z","schemaVersion":2},"datasetVersion":"2026-08-21T13:17:26.733Z"}