We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3877aba commit 999411dCopy full SHA for 999411d
2 files changed
CHANGELOG.md
@@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
3
4
This project follows [Semantic Versioning](http://semver.org) guidelines.
5
6
+## v0.6.1 (Courageous Carniadactylus)
7
+### Fixed
8
+* Fixes a bug preventing the use of services that have no variables attached to them.
9
+
10
## v0.6.0 (Courageous Carniadactylus)
11
### Fixed
12
* Bug causing error logs to be spammed if someone timed out on an ajax based page.
app/Repositories/ServerRepository.php
@@ -733,6 +733,10 @@ protected function parseVariables(Server $server)
733
$i++;
734
}
735
736
+ if ($parsed->count() === 0) {
737
+ return collect($merge);
738
+ }
739
740
return $parsed->merge($merge);
741
742
0 commit comments