Skip to content

Commit 5ad1488

Browse files
committed
lib: call feed_w3m with the proper -I argument
Since we are force-converting to UTF-8 since 16dbae4, -I UTF-8 must be passed. Fixes: gromox-2.44-128-g16dbae4f6 References: GXL-606, GXF-1686, GXF-2213, DESK-3449, DESK-3610
1 parent 373293c commit 5ad1488

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rfbl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ int feed_w3m(const void *inbuf, size_t len, const char *cset,
575575
argv[argc++] = "w3m";
576576
if (cset != nullptr) {
577577
argv[argc++] = "-I";
578-
argv[argc++] = cset;
578+
argv[argc++] = "UTF-8";
579579
}
580580
argv[argc++] = "-O";
581581
argv[argc++] = "UTF-8";

0 commit comments

Comments
 (0)