Compare commits

...

2 Commits

Author SHA1 Message Date
defnotken
1488704db4 update tag and release yaml 2025-10-08 12:44:10 -05:00
CakeAndBanana
46db5c87e0 Fixed renaming of syncshell tags 2025-10-07 23:10:41 +02:00
2 changed files with 4 additions and 4 deletions

View File

@@ -41,9 +41,9 @@ jobs:
- name: Get version - name: Get version
id: package_version id: package_version
uses: KageKirin/get-csproj-version@v0 run: |
with: version=$(grep -oPm1 "(?<=<Version>)[^<]+" LightlessSync/LightlessSync.csproj)
file: LightlessSync/LightlessSync.csproj echo "version=$version" >> $GITHUB_OUTPUT
- name: Display version - name: Display version
run: | run: |

View File

@@ -504,7 +504,7 @@ public class ServerConfigurationManager
internal void RenameTag(Dictionary<string, List<string>> tags, HashSet<string> storage, string oldName, string newName) internal void RenameTag(Dictionary<string, List<string>> tags, HashSet<string> storage, string oldName, string newName)
{ {
if (newName.Length > _maxCharactersFolder) if (newName.Length < _maxCharactersFolder)
{ {
storage.Remove(oldName); storage.Remove(oldName);
storage.Add(newName); storage.Add(newName);