mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-13 20:47:04 +00:00
fix: use correct key for destination CurrentSourceInfoKey
This commit is contained in:
parent
1a11e9019c
commit
590e16298c
1 changed files with 2 additions and 1 deletions
|
|
@ -175,6 +175,7 @@ namespace PepperDash.Essentials.Core.Routing
|
||||||
});
|
});
|
||||||
|
|
||||||
var source = sourceListItem.Value;
|
var source = sourceListItem.Value;
|
||||||
|
var sourceKey = sourceListItem.Key;
|
||||||
|
|
||||||
if (source == null)
|
if (source == null)
|
||||||
{
|
{
|
||||||
|
|
@ -194,7 +195,7 @@ namespace PepperDash.Essentials.Core.Routing
|
||||||
// Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Got Source {source}", this, source);
|
// Debug.LogMessage(Serilog.Events.LogEventLevel.Verbose, "Got Source {source}", this, source);
|
||||||
|
|
||||||
destination.CurrentSourceInfo = source;
|
destination.CurrentSourceInfo = source;
|
||||||
destination.CurrentSourceInfoKey = source.SourceKey;
|
destination.CurrentSourceInfoKey = sourceKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
private TieLine GetRootTieLine(TieLine tieLine)
|
private TieLine GetRootTieLine(TieLine tieLine)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue