skip usage-counting if we're jilted but other side is happy?
This commit is contained in:
parent
ff578fccf8
commit
4669619f7e
|
@ -362,6 +362,10 @@ class TransitServerState(object):
|
||||||
# some outputs to record "usage" information ..
|
# some outputs to record "usage" information ..
|
||||||
@_machine.output()
|
@_machine.output()
|
||||||
def _record_usage(self):
|
def _record_usage(self):
|
||||||
|
if self._mood == "jilted":
|
||||||
|
if self._buddy:
|
||||||
|
if self._buddy._mood == "happy":
|
||||||
|
return
|
||||||
self._usage.record(
|
self._usage.record(
|
||||||
started=self._client.started_time,
|
started=self._client.started_time,
|
||||||
buddy_started=self._buddy._client.started_time if self._buddy is not None else None,
|
buddy_started=self._buddy._client.started_time if self._buddy is not None else None,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user