diff options
author | Daniel Friesel <derf@finalrewind.org> | 2015-04-28 12:28:18 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2015-04-28 12:28:18 +0200 |
commit | 3c7b15140599f5299caede2d7794dfab623bedc2 (patch) | |
tree | 963b51be6f7131015d72f6e6d559d3ebbda465aa | |
parent | fdd8b35771c80743a97b345010ec97f0a0a36c6a (diff) |
db-iris: fix wing detection encapsulation issue
-rwxr-xr-x | bin/db-iris | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/db-iris b/bin/db-iris index a562212..848935c 100755 --- a/bin/db-iris +++ b/bin/db-iris @@ -408,10 +408,10 @@ for my $d ( $status->results() ) { $wing ] ); - push( @processed_wings, $wing ); + push( @processed_wings, $wing->wing_id ); } for my $wing ( $d->arrival_wings ) { - if ( not $wing ~~ \@processed_wings ) { + if ( not $wing->wing_id ~~ \@processed_wings ) { push( @output, [ |