From 1d58e7fd7f309f9eb23bef2727445270c0f1af6e Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Mon, 28 Dec 2009 19:36:42 +0000 Subject: [PATCH] - Fix PeerGuardian .p2b file support --- Changelog | 3 +++ src/filterparserthread.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 25a61d605..2d06fe74a 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +* Unreleased - Christophe Dumez - v2.0.4 + - BUGFIX: Fix PeerGuardian .p2b binary filter support + * Wed Dec 23 2009 - Christophe Dumez - v2.0.3 - BUGFIX: Minor cosmetic fix to program preferences - BUGFIX: Fix "Temp path" button in program preferences diff --git a/src/filterparserthread.h b/src/filterparserthread.h index aafcbb32f..3e514ffe9 100644 --- a/src/filterparserthread.h +++ b/src/filterparserthread.h @@ -71,7 +71,7 @@ class FilterParserThread : public QThread { // PeerGuardian p2p file parseP2PFilterFile(filePath); } else { - if(filePath.endsWith(".p2p", Qt::CaseInsensitive)) { + if(filePath.endsWith(".p2b", Qt::CaseInsensitive)) { // PeerGuardian p2b file parseP2BFilterFile(filePath); } else {