]> Sergey Matveev's repositories - tofuproxy.git/blobdiff - warc/uris.go
Restricted CAs
[tofuproxy.git] / warc / uris.go
index 03f5678bb0503d4f6798c943489ea6d7283036ff..2c40dcfbb7f60cde38240edd8309c07749fbd3c1 100644 (file)
@@ -1,7 +1,7 @@
 /*
 tofuproxy -- flexible HTTP/HTTPS proxy, TLS terminator, X.509 TOFU
              manager, WARC/geminispace browser
-Copyright (C) 2021-2022 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2021-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -20,8 +20,10 @@ package warc
 
 import (
        "encoding/gob"
+       "errors"
        "fmt"
        "io"
+       "io/fs"
        "log"
        "os"
        "strconv"
@@ -59,7 +61,7 @@ func Add(warcPath string) error {
                log.Println("loaded marshalled index:", warcPath+IndexExt)
                return nil
        }
-       if err != nil && !os.IsNotExist(err) {
+       if err != nil && !errors.Is(err, fs.ErrNotExist) {
                return err
        }
        r, err := NewReader(warcPath)