provide a default in case httpUnsafeOrigin is not provided
This commit is contained in:
parent
ee16b3ab15
commit
bcbec0144c
@ -106,7 +106,9 @@ define([
|
|||||||
// 'block/' here is hardcoded because it's hardcoded on the server
|
// 'block/' here is hardcoded because it's hardcoded on the server
|
||||||
// if we want to make CryptPad work in server subfolders, we'll need
|
// if we want to make CryptPad work in server subfolders, we'll need
|
||||||
// to update this path derivation
|
// to update this path derivation
|
||||||
return ApiConfig.httpUnsafeOrigin + 'block/' + publicKey.slice(0, 2) + '/' + publicKey;
|
return (typeof(ApiConfig.httpUnsafeOrigin) !== 'undefined'?
|
||||||
|
ApiConfig.httpUnsafeOrigin: window.location.origin)
|
||||||
|
+ 'block/' + publicKey.slice(0, 2) + '/' + publicKey;
|
||||||
};
|
};
|
||||||
|
|
||||||
Block.getBlockHash = function (keys) {
|
Block.getBlockHash = function (keys) {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user