Verdiği hata "ERR_UPLOAD_FILE_CHANGED"

Upload yapılan bir dosya var ve bunun değişmesi/silinmesi gibi bir olay gibi algılıyorum.

Ajax ile dosya upload oluyorsa sonrasında resetleme yapman gerekiyor sanırım.


$.ajax({
    url: this.action,
    type: this.method,
    data: this.data,
    success: function (response) { 
        // success scenario
    },
    error: function (result) {
        // error scenario
    },
    complete: function (data) {
        $('#uploadForm')[0].reset(); // this will reset the form fields
    }
});