You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If this.offlineService is undefined, tableSchema and foreignKeys will not be set in the first conditional. That forces the code to throw in the second condition. !foreignKeys is true so the code enters the block and tableSchema is necessarily undefined.
The text was updated successfully, but these errors were encountered:
The logic of the following section of
DataService. _performAndDeleteOfflineOperation
is logically inconsistent.https://github.com/montagejs/montage/blob/master/data/service/data-service.js#L2395-L2404
If
this.offlineService
isundefined
,tableSchema
andforeignKeys
will not be set in the first conditional. That forces the code to throw in the second condition.!foreignKeys
is true so the code enters the block andtableSchema
is necessarilyundefined
.The text was updated successfully, but these errors were encountered: