Skip to content

Commit 4c2a908

Browse files
authored
Merge pull request #1 from bunkford/patch-1
Fix locking doors
2 parents 1818241 + 43cf957 commit 4c2a908

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fordpass/fordpass.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def unlock(self):
109109
'''
110110
Issue an unlock command to the doors
111111
'''
112-
return self.__requestAndPoll('DELETE', f'{baseUrl}/vehicles/v2/{self.vin}/engine/start')
112+
return self.__requestAndPoll('DELETE', f'{baseUrl}/vehicles/v2/{self.vin}/doors/lock')
113113

114114
def __makeRequest(self, method, url, data, params):
115115
'''

0 commit comments

Comments
 (0)