mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
all data urls in bg. also fix setmeta to only split on the first equal sign (#889)
This commit is contained in:
parent
c5770a6903
commit
5d8fa2e8d9
@ -28,7 +28,7 @@ func init() {
|
||||
func parseMetaSets(metaSets []string) (map[string]interface{}, error) {
|
||||
meta := make(map[string]interface{})
|
||||
for _, metaSet := range metaSets {
|
||||
fields := strings.Split(metaSet, "=")
|
||||
fields := strings.SplitN(metaSet, "=", 2)
|
||||
if len(fields) != 2 {
|
||||
return nil, fmt.Errorf("invalid meta set: %q", metaSet)
|
||||
}
|
||||
|
@ -172,6 +172,9 @@ function processBackgroundUrls(cssText: string): string {
|
||||
hasJSUrl = true;
|
||||
return;
|
||||
}
|
||||
if (originalUrl.startsWith("data:")) {
|
||||
return;
|
||||
}
|
||||
const newUrl = encodeFileURL(originalUrl);
|
||||
node.value = newUrl;
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user