Silently ignore invalid (already deleted) pastes
[phorkie.git] / src / phorkie / Repository.php
index 62a6e38c4da8a30c6690381935693047b6606725..eae2fb4666b26352dfae6f3df537a38b7c0b01c8 100644 (file)
@@ -113,6 +113,12 @@ class Repository
         $this->hash = $output;
     }
 
+    public function reloadHash()
+    {
+        $this->hash = null;
+        return $this->loadHash();
+    }
+
     /**
      * Populates $this->message
      *
@@ -137,7 +143,7 @@ class Repository
 
     public function getVc()
     {
-        return new \VersionControl_Git($this->gitDir);
+        return new \VersionControl_Git($this->workDir);
     }
 
     /**