소스 검색

Handle empty URLs from cached results correctly.

pull/24/head
Ben Kurtovic 10 년 전
부모
커밋
c165e97fb2
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      copyvios/checker.py

+ 1
- 1
copyvios/checker.py 파일 보기

@@ -129,7 +129,7 @@ def _get_cached_results(page, conn, query, mode):

def _do_copyvio_compare(query, page, url):
result = page.copyvio_compare(url, min_confidence=T_SUSPECT, max_time=30)
if result.source_chain is not EMPTY:
if url and result.source_chain is not EMPTY:
return result
query.error = "timeout" if result.time > 30 else "no data"



불러오는 중...
취소
저장