Fix inability to assign services with no variables, closes #447
This commit is contained in:
parent
3877aba373
commit
999411da29
2 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,10 @@ This file is a running track of new features and fixes to each version of the pa
|
|||
|
||||
This project follows [Semantic Versioning](http://semver.org) guidelines.
|
||||
|
||||
## v0.6.1 (Courageous Carniadactylus)
|
||||
### Fixed
|
||||
* Fixes a bug preventing the use of services that have no variables attached to them.
|
||||
|
||||
## v0.6.0 (Courageous Carniadactylus)
|
||||
### Fixed
|
||||
* Bug causing error logs to be spammed if someone timed out on an ajax based page.
|
||||
|
|
|
@ -733,6 +733,10 @@ class ServerRepository
|
|||
$i++;
|
||||
}
|
||||
|
||||
if ($parsed->count() === 0) {
|
||||
return collect($merge);
|
||||
}
|
||||
|
||||
return $parsed->merge($merge);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue