aboutsummaryrefslogtreecommitdiff
path: root/src/webex/notify.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2017-05-29 01:48:46 +0200
committerFlorian Dold <florian.dold@gmail.com>2017-05-29 01:48:46 +0200
commit5755f7a81433dea3754f9f86d90884cf23b7ad64 (patch)
treefb1943180cf6cbf7de6cb36a327232b2b3999b13 /src/webex/notify.ts
parentf5a20cc822139190c32e54f395fe857a8ea240ac (diff)
downloadwallet-core-5755f7a81433dea3754f9f86d90884cf23b7ad64.tar.xz
fix paths previously missed during restructuring
Diffstat (limited to 'src/webex/notify.ts')
-rw-r--r--src/webex/notify.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webex/notify.ts b/src/webex/notify.ts
index 733367a59..23e73d145 100644
--- a/src/webex/notify.ts
+++ b/src/webex/notify.ts
@@ -388,7 +388,7 @@ async function processProposal(proposal: any) {
const offerId = await saveOffer(proposal);
const uri = new URI(chrome.extension.getURL(
- "/src/pages/confirm-contract.html"));
+ "/src/webex/pages/confirm-contract.html"));
const params = {
offerId: offerId.toString(),
};
@@ -512,7 +512,7 @@ function registerHandlers() {
suggested_exchange_url: msg.suggested_exchange_url,
wt_types: JSON.stringify(msg.wt_types),
};
- const uri = new URI(chrome.extension.getURL("/src/pages/confirm-create-reserve.html"));
+ const uri = new URI(chrome.extension.getURL("/src/webex/pages/confirm-create-reserve.html"));
const redirectUrl = uri.query(params).href();
window.location.href = redirectUrl;
});
@@ -521,7 +521,7 @@ function registerHandlers() {
const params = {
req: JSON.stringify(msg),
};
- const uri = new URI(chrome.extension.getURL("/src/pages/add-auditor.html"));
+ const uri = new URI(chrome.extension.getURL("/src/webex/pages/add-auditor.html"));
const redirectUrl = uri.query(params).href();
window.location.href = redirectUrl;
});