mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 13:07:36 +03:00
Fixed a problem with the injection code
This commit is contained in:
parent
c9455e1955
commit
f3ba23ef41
1 changed files with 6 additions and 4 deletions
|
@ -13,12 +13,14 @@ var (
|
||||||
|
|
||||||
func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface{}) {
|
func DefineSingleton(ptr interface{}, constructor interface{}, args ...interface{}) {
|
||||||
typ := reflect.TypeOf(ptr)
|
typ := reflect.TypeOf(ptr)
|
||||||
if definitions[typ] == nil {
|
provider := inject.NewProvider(constructor, args...)
|
||||||
Graph.Define(ptr, inject.NewProvider(constructor, args...))
|
|
||||||
|
if _, found := definitions[typ]; found {
|
||||||
|
ptr = definitions[typ]
|
||||||
} else {
|
} else {
|
||||||
Graph.Define(definitions[typ], inject.NewProvider(constructor, args...))
|
definitions[typ] = ptr
|
||||||
}
|
}
|
||||||
definitions[typ] = ptr
|
Graph.Define(ptr, provider)
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue