Skip to content

Commit

Permalink
fix broken rename of e to error
Browse files Browse the repository at this point in the history
  • Loading branch information
nreese committed Jan 11, 2021
1 parent 1afe217 commit 6bb48f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ export class VectorLayer extends AbstractLayer {
};
} catch (error) {
if (!(error instanceof DataRequestAbortError)) {
onLoadError(sourceDataId, requestToken, `Join error: ${e.message}`);
onLoadError(sourceDataId, requestToken, `Join error: ${error.message}`);
}
throw error;
}
Expand Down

0 comments on commit 6bb48f2

Please sign in to comment.