From 3eb932e353e224b470d620052d5eef9e3910ec5c Mon Sep 17 00:00:00 2001
From: Jacek Kowalski <Jacek@jacekk.info>
Date: Tue, 26 Jun 2012 11:23:54 +0000
Subject: [PATCH] Aktualizacja wersji do 2.2

---
 class/BotSession.php |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/class/BotSession.php b/class/BotSession.php
index a70734e..9c7a5b0 100644
--- a/class/BotSession.php
+++ b/class/BotSession.php
@@ -72,7 +72,9 @@
 			}
 		}
 		catch(Exception $e) {
-			@unlink(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite');
+			if(file_exists(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite')) {
+				@unlink(BOT_TOPDIR.'/database/'.sha1($this->user).'.sqlite');
+			}
 			throw $e;
 		}
 	}

--
Gitblit v1.9.1