diff --git a/svg.php b/svg.php index f0bad62..a0938a3 100644 --- a/svg.php +++ b/svg.php @@ -111,7 +111,9 @@ class SVG { } else { // get it from material design icons $file = getCacheName($svg, '.svg'); - io_download(self::CDNBASE . $svg, $file); + if (!file_exists($file)) { + io_download(self::CDNBASE . $svg, $file); + } } }