Skip to content

Commit

Permalink
fix errornous logic in last fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Riddle committed Aug 5, 2012
1 parent 723a611 commit fb5180a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/Device/Firmdata.pm
Expand Up @@ -224,13 +224,13 @@ sub handleSystemMessage_beacon {


if (! $self->sessionStartWait) { if (! $self->sessionStartWait) {
$self->sessionStartWait(1); $self->sessionStartWait(1);
$self->sendCommand('SESSION_START'); $self->sendCommand('SESSION_START');
}

print STDERR "Session started at ", scalar(localtime()), "\n";
print STDERR "Session started at ", scalar(localtime()), "\n";


$self->session($self->build_session); $self->session($self->build_session);
$self->session->sessionOpen; $self->session->sessionOpen;
}
} }


#see the comments on sendCommand() for info on what is going on here #see the comments on sendCommand() for info on what is going on here
Expand Down

0 comments on commit fb5180a

Please sign in to comment.