File tree 1 file changed +4
-0
lines changed
1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ def __init__(self):
15
15
self .register ('TELEMETRY_8' , 'main/SendIMVULogs.py' , r'def send' )
16
16
self .register ('TELEMETRY_9' , 'main/SendIMVULogs.py' , r'def send_internal' )
17
17
self .register ('TELEMETRY_10' , 'imvu/account.py' , r'fingerprint\.deviceFingerprint\(\)' )
18
+ self .register ('TELEMETRY_11' , 'imvu/log.py' , r'def getRecords' )
18
19
19
20
def patch (self , context ):
20
21
if context .pattern == 'TELEMETRY_1' :
@@ -50,3 +51,6 @@ def patch(self, context):
50
51
fingerprint = 'RlB2NFVFTTZWMmx1Wkc5M2N6b3lMalV1TVM0ekxqQTZPam89'
51
52
context .write ('data = base64.b64decode(\' {}\' ).decode(\' utf-8\' )' .format (fingerprint ), indent = 2 )
52
53
context .write ('si[\' bluecava_fingerprint\' ] = data' , indent = 2 )
54
+ elif context .pattern == 'TELEMETRY_11' :
55
+ context .write (context .line )
56
+ context .write ('self.clearRecords()' , indent = 2 )
You can’t perform that action at this time.
0 commit comments