Skip to content

Commit

Permalink
Merge pull request #853 from Infomaniak/fix-javascriptdelcaration
Browse files Browse the repository at this point in the history
fix: Add single quotes
  • Loading branch information
PhilippeWeidmann authored Jul 5, 2023
2 parents ec01c4b + 4ac2b5d commit 31c3359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mail/Views/Thread/WebView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ enum JavaScriptDeclaration {
var description: String {
switch self {
case .normalizeMessageWidth(let width, let messageUid):
return "normalizeMessageWidth(\(width), \(messageUid))"
return "normalizeMessageWidth(\(width), '\(messageUid)')"
case .removeAllProperties:
return "removeAllProperties()"
case .documentReadyState:
Expand Down

0 comments on commit 31c3359

Please sign in to comment.