Skip to content

Commit

Permalink
Merge cd9760b into 9aeb301
Browse files Browse the repository at this point in the history
  • Loading branch information
J-N-K authored Nov 8, 2021
2 parents 9aeb301 + cd9760b commit 0a5c9e1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ export default {
this.stopEventSource()
let addonId = this.addonId
let serviceId = null
if (addonId.indexOf('marketplace:') === 0) {
serviceId = 'marketplace'
if (addonId.indexOf(':') > 0) {
serviceId = addonId.substring(0, addonId.indexOf(':'))
addonId = addonId.substring(addonId.indexOf(':') + 1)
}
this.bindingInfo = null
Expand Down

0 comments on commit 0a5c9e1

Please sign in to comment.