Using fetchPath() I can retrieve the current conversation URL, but the function returns a Promise Object.
How do I get the “PromiseResult” value from the object, ie. how do I get the path into a string?
Front.contextUpdates.subscribe(context => {
let path = context.fetchPath();
});