Skip to content

Commit f8bfff6

Browse files
committed
[patch] use version numbers in websdk local build
I put these to 0.0.0 because i thought it would make it more clear that these come from elsewhere. (we fill these in with the actual gha version when we release). However, some of our apis check the values that we send here. So, having 0.0.0 was breaking some journeys. I put it to 2.85.1. It wont need to be updated unless we make another check on the backend that we want to test
1 parent 5459f83 commit f8bfff6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/0_config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ var DEFAULT_API_ENDPOINT = 'https://api2.branch.io';
88
config.app_service_endpoint = 'https://app.link';
99
config.link_service_endpoint = 'https://bnc.lt';
1010
config.api_endpoint = DEFAULT_API_ENDPOINT;
11-
config.version = '0.0.0';
11+
config.version = '2.85.1'; // will get overwritten by gha on actual deploy

test/web-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ goog.provide('config');
66
config.app_service_endpoint = 'https://app.link';
77
config.link_service_endpoint = 'https://bnc.lt';
88
config.api_endpoint = 'https://api.branch.io';
9-
config.version = '0.0.0';
9+
config.version = '2.85.1'; // will get overwritten by gha on actual deploy

0 commit comments

Comments
 (0)