Giter VIP home page Giter VIP logo

Comments (2)

ThomasLeister avatar ThomasLeister commented on June 12, 2024

MAC comp is fine, but fileStorePath is not valid if Path begins with "d" after upload/

See example:

package main

import (
	"fmt"
	"strings"
)

const UploadSubDir = "upload/"

func fileStorePath(path string) string {
	fileStorePath := strings.TrimLeft(path, UploadSubDir)
	return fileStorePath
}


func main() {
	fmt.Println(fileStorePath("/upload/532545f-54b3-49b8-82ad-24495955ec95/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=3fee04f56c3c6eeb3f901ed6c56"))
	fmt.Println(fileStorePath("/upload/d808e7416-aa5f-4ba4-8485-c9fecedbef5f/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=1c5eff17ec5c9112903a69beb"))
	fmt.Println(fileStorePath("/upload/e808e7416-aa5f-4ba4-8485-c9fecedbef5f/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=1c5eff17ec5c9112903a69beb"))
}

Output:

532545f-54b3-49b8-82ad-24495955ec95/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=3fee04f56c3c6eeb3f901ed6c56
808e7416-aa5f-4ba4-8485-c9fecedbef5f/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=1c5eff17ec5c9112903a69beb
e808e7416-aa5f-4ba4-8485-c9fecedbef5f/zpFSnXqQRhi5w_s0EH6PVw.jpg?v=1c5eff17ec5c9112903a69beb

(second example string is not same as output - "d" in the beginning is missing. the others are okay).

Investigating ...

from prosody-filer.

ThomasLeister avatar ThomasLeister commented on June 12, 2024

Reason for bug: Misuse of TrimLeft() function. Use TrimPrefix() to archieve goal.

from prosody-filer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.