diff --git a/app/Casts/CompressedString.php b/app/Casts/CompressedString.php index 6089640..918183d 100644 --- a/app/Casts/CompressedString.php +++ b/app/Casts/CompressedString.php @@ -28,7 +28,13 @@ class CompressedString implements CastsAttributes ? stream_get_contents($value) : $value; - return $value ? zstd_uncompress(base64_decode($value)) : ''; + // If we get an error decompressing, it might not be zstd (or its already been done) + try { + return $value ? zstd_uncompress(base64_decode($value)) : ''; + + } catch (\ErrorException $e) { + return $value; + } } /**