-
Notifications
You must be signed in to change notification settings - Fork 653
Closed
Labels
coretype: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.
Description
Installing the latest version (0.47.0) using npm, the code is missing some fixes that were made before to that release.
One example mismatch is in pubsub/src/subscription.js, line 735, looks like this when installed form npm :
if (self.activeRequest_ && self.activeRequest_.cancel) {
self.activeRequest_.cancel();
}According to git, it was changed to
if (self.activeRequest_ && self.activeRequest_.abort) {
self.activeRequest_.abort();
}The commit e92454e added this change.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
coretype: questionRequest for information or clarification. Not an issue.Request for information or clarification. Not an issue.