@xuda.io/runtime-bundle 1.0.791 → 1.0.793
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/xuda-runtime-bundle.js +247 -455
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +3 -1
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +247 -455
- package/js/xuda-runtime-slim.min.es.js +247 -455
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +3 -1
- package/js/xuda-worker-bundle.js +3 -1
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -5023,7 +5023,9 @@ func.utils.get_drive_url = function (SESSION_ID, val, wrap) {
|
|
|
5023
5023
|
|
|
5024
5024
|
if (!_app.is_deployment) {
|
|
5025
5025
|
// the deployment server will handle the app_token
|
|
5026
|
-
FILE_REPLACE_URL += `?app_token=${_session.app_token}`;
|
|
5026
|
+
FILE_REPLACE_URL += `?app_token=${_session.app_token}&ts=${Date.now()}`;
|
|
5027
|
+
} else {
|
|
5028
|
+
FILE_REPLACE_URL += `?ts=${_session?.opt?.app_build_id || 0}`;
|
|
5027
5029
|
}
|
|
5028
5030
|
|
|
5029
5031
|
let match = `drv_${_app.app_replicate || _session.app_id}_[0-9a-f\\-]+\\.[a-zA-Z0-9]+`;
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -5023,7 +5023,9 @@ func.utils.get_drive_url = function (SESSION_ID, val, wrap) {
|
|
|
5023
5023
|
|
|
5024
5024
|
if (!_app.is_deployment) {
|
|
5025
5025
|
// the deployment server will handle the app_token
|
|
5026
|
-
FILE_REPLACE_URL += `?app_token=${_session.app_token}`;
|
|
5026
|
+
FILE_REPLACE_URL += `?app_token=${_session.app_token}&ts=${Date.now()}`;
|
|
5027
|
+
} else {
|
|
5028
|
+
FILE_REPLACE_URL += `?ts=${_session?.opt?.app_build_id || 0}`;
|
|
5027
5029
|
}
|
|
5028
5030
|
|
|
5029
5031
|
let match = `drv_${_app.app_replicate || _session.app_id}_[0-9a-f\\-]+\\.[a-zA-Z0-9]+`;
|