don't panic
This commit is contained in:
parent
2f15c920d4
commit
fbd683e094
1 changed files with 8 additions and 3 deletions
|
@ -517,9 +517,14 @@ func (s *Sync) updateRemoteDB(claims []jsonrpc.Claim, ownClaims []jsonrpc.Claim)
|
||||||
}
|
}
|
||||||
|
|
||||||
if !claimInDatabase || metadataDiffers || claimIDDiffers || claimNameDiffers || claimMarkedUnpublished || transferStatusMismatch {
|
if !claimInDatabase || metadataDiffers || claimIDDiffers || claimNameDiffers || claimMarkedUnpublished || transferStatusMismatch {
|
||||||
claimSize, err := chainInfo.Claim.GetStreamSizeByMagic()
|
claimSize := uint64(0)
|
||||||
if err != nil {
|
if chainInfo.Claim.Value.GetStream().Source != nil {
|
||||||
claimSize = 0
|
claimSize, err = chainInfo.Claim.GetStreamSizeByMagic()
|
||||||
|
if err != nil {
|
||||||
|
claimSize = 0
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
util.SendToSlack("[%s] video with claimID %s has no source?! panic prevented...", s.DbChannelData.ChannelId, chainInfo.ClaimID)
|
||||||
}
|
}
|
||||||
fixed++
|
fixed++
|
||||||
log.Debugf("updating %s in the database", videoID)
|
log.Debugf("updating %s in the database", videoID)
|
||||||
|
|
Loading…
Reference in a new issue