launchpad: fix a nil value access

Michael Muré created

Change summary

bridge/launchpad/import.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

bridge/launchpad/import.go 🔗

@@ -138,7 +138,7 @@ func (li *launchpadImporter) ImportAll(ctx context.Context, repo *cache.RepoCach
 							metaKeyLaunchpadID: lpMessage.ID,
 						})
 					if err != nil {
-						out <- core.NewImportError(err, op.Id())
+						out <- core.NewImportError(err, b.Id())
 						return
 					}