We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8021bc commit f56cea3Copy full SHA for f56cea3
src/hdskins/java/com/voxelmodpack/hdskins/HDSkinManager.java
@@ -46,6 +46,8 @@ public static void onDownloadSkin(EventInfo<ThreadDownloadImageData> e) {
46
if (imageDownload != null) {
47
String imageUrl = PrivateFields.imageUrl.get(imageDownload);
48
if (imageUrl != null) {
49
+ if (imageUrl.contains("optifine.net"))
50
+ return; // ignore optifine capes
51
String hash = FilenameUtils.getBaseName(imageUrl);
52
String uuid = resolvePlayerIdFromHash(hash);
53
if (uuid == null) {
0 commit comments