🐛 Fix nil pointer panic
This commit is contained in:
parent
a9156992f4
commit
07417deea9
@ -4,9 +4,8 @@
|
|||||||
<option name="autoReloadType" value="ALL" />
|
<option name="autoReloadType" value="ALL" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ChangeListManager">
|
<component name="ChangeListManager">
|
||||||
<list default="true" id="18dd0d68-b4b8-40db-9734-9119b5c848bd" name="更改" comment=":bug: Trying to prevent exiftool causing analyze failed">
|
<list default="true" id="18dd0d68-b4b8-40db-9734-9119b5c848bd" name="更改" comment=":bug: Fix bug crash caused by hash small files">
|
||||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||||
<change beforePath="$PROJECT_DIR$/pkg/internal/services/analyzer.go" beforeDir="false" afterPath="$PROJECT_DIR$/pkg/internal/services/analyzer.go" afterDir="false" />
|
|
||||||
</list>
|
</list>
|
||||||
<option name="SHOW_DIALOG" value="false" />
|
<option name="SHOW_DIALOG" value="false" />
|
||||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||||
@ -117,7 +116,6 @@
|
|||||||
</option>
|
</option>
|
||||||
</component>
|
</component>
|
||||||
<component name="VcsManagerConfiguration">
|
<component name="VcsManagerConfiguration">
|
||||||
<MESSAGE value=":recycle: Split mark and delete file" />
|
|
||||||
<MESSAGE value=":bug: Fix migration issue on pools" />
|
<MESSAGE value=":bug: Fix migration issue on pools" />
|
||||||
<MESSAGE value=":bug: Fix schedule deletion will delete referenced file" />
|
<MESSAGE value=":bug: Fix schedule deletion will delete referenced file" />
|
||||||
<MESSAGE value=":bug: Fix sql statement" />
|
<MESSAGE value=":bug: Fix sql statement" />
|
||||||
@ -142,7 +140,8 @@
|
|||||||
<MESSAGE value=":sparkles: Save EXIF into file metadata" />
|
<MESSAGE value=":sparkles: Save EXIF into file metadata" />
|
||||||
<MESSAGE value=":zap: Use exif whitelist to prevent produce garbage data" />
|
<MESSAGE value=":zap: Use exif whitelist to prevent produce garbage data" />
|
||||||
<MESSAGE value=":bug: Trying to prevent exiftool causing analyze failed" />
|
<MESSAGE value=":bug: Trying to prevent exiftool causing analyze failed" />
|
||||||
<option name="LAST_COMMIT_MESSAGE" value=":bug: Trying to prevent exiftool causing analyze failed" />
|
<MESSAGE value=":bug: Fix bug crash caused by hash small files" />
|
||||||
|
<option name="LAST_COMMIT_MESSAGE" value=":bug: Fix bug crash caused by hash small files" />
|
||||||
</component>
|
</component>
|
||||||
<component name="VgoProject">
|
<component name="VgoProject">
|
||||||
<settings-migrated>true</settings-migrated>
|
<settings-migrated>true</settings-migrated>
|
||||||
|
@ -187,7 +187,7 @@ func TryLinkAttachment(tx *gorm.DB, og models.Attachment, hash string) (bool, er
|
|||||||
return false, err
|
return false, err
|
||||||
}
|
}
|
||||||
|
|
||||||
if prev.PoolID != nil && og.PoolID != nil && prev.PoolID != og.PoolID {
|
if prev.PoolID != nil && og.PoolID != nil && prev.PoolID != og.PoolID && prev.Pool != nil && og.Pool != nil {
|
||||||
if !prev.Pool.Config.Data().AllowCrossPoolEgress || !og.Pool.Config.Data().AllowCrossPoolIngress {
|
if !prev.Pool.Config.Data().AllowCrossPoolEgress || !og.Pool.Config.Data().AllowCrossPoolIngress {
|
||||||
// Pool config doesn't allow reference
|
// Pool config doesn't allow reference
|
||||||
return false, nil
|
return false, nil
|
||||||
|
Loading…
Reference in New Issue
Block a user