Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion addon/appModules/_chatParser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_DATE_RE = re.compile(r'^\d{4}\.\d{2}\.\d{2} .+$')
_MSG_RE = re.compile(r'^(\d{2}:\d{2}) (\S+?) (.+)$')
_RECALL_RE = re.compile(r'^(\d{2}:\d{2}) (\S+?) 已收回訊息$')
_RECALL_RE = re.compile(r'^(\d{2}:\d{2}) (\S+?)已收回訊息$')


def parseChatFile(filePath):
Expand Down
1 change: 1 addition & 0 deletions addon/appModules/line.py
Original file line number Diff line number Diff line change
Expand Up @@ -5941,6 +5941,7 @@ def _messageReaderHandleSaveDialog(self, retriesLeft=10):
"""Find the Save As dialog, set filename to temp folder, and save."""
import ctypes
import ctypes.wintypes as wintypes
import tempfile

lineProcessId = self.processID
WNDENUMPROC = ctypes.WINFUNCTYPE(wintypes.BOOL, wintypes.HWND, wintypes.LPARAM)
Expand Down
Loading