File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
services/static-webserver/client/source/class/osparc/data Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -1441,6 +1441,7 @@ qx.Class.define("osparc.data.Resources", {
14411441
14421442 let message = null ;
14431443 let status = null ;
1444+ let supportId = null ;
14441445 if ( e . getData ( ) . error ) {
14451446 const errorData = e . getData ( ) . error ;
14461447 if ( errorData . message ) {
@@ -1455,6 +1456,9 @@ qx.Class.define("osparc.data.Resources", {
14551456 message = errors [ 0 ] . message ;
14561457 }
14571458 status = errorData . status ;
1459+ if ( errorData [ "support_id" ] ) {
1460+ supportId = errorData [ "support_id" ] ;
1461+ }
14581462 } else {
14591463 const req = e . getRequest ( ) ;
14601464 message = req . getResponse ( ) ;
@@ -1486,6 +1490,9 @@ qx.Class.define("osparc.data.Resources", {
14861490 if ( status ) {
14871491 err . status = status ;
14881492 }
1493+ if ( supportId ) {
1494+ err . supportId = supportId ;
1495+ }
14891496 reject ( err ) ;
14901497 } ;
14911498
You can’t perform that action at this time.
0 commit comments