Crash in IceTV plugin on recording write error

Issue #734 resolved
prl created an issue

If a recording has a write error while it’s being made, and the user is using IceTV, the IceTV plugin crashes in the error-handling code.

The problem is that:

        if event == evRecordWriteError and id(event) not in self.failed:

should be

        if event == iRecordableService.evRecordWriteError and id(event) not in self.failed:

Comments (2)

  1. Peter Urbanec

    Fix bug #734: Crash in IceTV plugin on recording write error

    Add class name to reference to evRecordWriteError to prevent crash when there is a disk write error during recording.

    → <<cset 7cc64bc805b8>>

  2. Log in to comment