Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(rest): allow ReSTv2 for Horizon 20.1.x
  • Loading branch information
RangerRick committed Sep 18, 2017
1 parent 5602b01 commit bd1dd59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/ServerMetadata.ts
Expand Up @@ -78,7 +78,7 @@ export class ServerMetadata {
if (this.type && this.type === ServerTypes.MERIDIAN) {
return this.version.ge('2017.1.0') ? 2 : 1;
} else {
return this.version.ge('21.0.0') ? 2 : 1;
return this.version.ge('20.1.0') ? 2 : 1;
}
}

Expand Down

0 comments on commit bd1dd59

Please sign in to comment.